/* Main Style */
body {
  background-color: whitesmoke;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}


.item.abstract p{
  text-align: justify !important;
  text-justify: inter-word;
}

.item.references .value {
  text-align: justify !important;
  text-justify: inter-word;
}

:root{
  --c-primary:#9A0002;
  --c-ink:#0B1220;
  --c-muted:rgba(11,18,32,.62);
  --c-border:rgba(0,36,107,.14);
  --c-bg:#fff;
  --c-shadow:0 14px 40px rgba(15,23,42,.08);
  --c-radius:18px;
}

.cmap{
  background:var(--c-bg);
  border:1px solid var(--c-border);
  border-radius:var(--c-radius);
  box-shadow:var(--c-shadow);
  padding:14px;
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,"Helvetica Neue",sans-serif;
  color:var(--c-ink);
}

.cmap__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}

.cmap__kicker{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--c-muted);
  line-height:1.2;
  margin-bottom:2px;
}

.cmap__title{
  margin:0;
  font-size:15px;
  line-height:1.15;
  color:var(--c-primary);
  font-weight:900;
}

.cmap__stats{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.cmap__pill{
  display:inline-flex;
  gap:6px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--c-border);
  background:rgba(0,36,107,.04);
}

.cmap__pillLabel{
  font-size:11px;
  color:var(--c-muted);
  font-weight:700;
}

.cmap__pillVal{
  font-size:12px;
  color:var(--c-primary);
  font-weight:900;
}

.cmap__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.cmap__card{
  position:relative;
  border:1px solid rgba(0,36,107,.12);
  border-radius:16px;
  background:
    radial-gradient(900px 160px at 20% 0%, rgba(0,36,107,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.94));
  padding:12px;
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cmap__card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,36,107,.12), transparent 55%);
  opacity:.18;
  pointer-events:none;
}

.cmap__card:hover{
  transform:translateY(-1px);
  border-color:rgba(0,36,107,.20);
  box-shadow:0 16px 34px rgba(15,23,42,.10);
}

.cmap__row{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  z-index:1;
}

.cmap__flagImg{
  width:38px !important;
  height:26px !important;
  min-width:38px !important;
  border-radius:8px;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 8px 16px rgba(15,23,42,.10);
  object-fit:cover;
  background:linear-gradient(180deg, rgba(0,36,107,.10), rgba(0,36,107,.04)); /* fallback if src empty */
  display:block;
}

.cmap__meta{
  min-width:0;
  flex:1 1 auto;
}

.cmap__country{
  font-size:13px;
  font-weight:900;
  color:var(--c-ink);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.cmap__sub{
  font-size:11px;
  color:var(--c-muted);
  font-weight:700;
  margin-top:2px;
}

.cmap__right{
  text-align:right;
  flex:0 0 auto;
}

.cmap__count{
  font-size:20px;
  font-weight:950;
  color:var(--c-primary);
  letter-spacing:-.02em;
  line-height:1;
}

.cmap__label{
  margin-top:2px;
  font-size:11px;
  color:var(--c-muted);
  font-weight:800;
}

.cmap__foot{
  margin-top:12px;
  padding-top:10px;
  border-top:1px dashed rgba(0,36,107,.18);
}

.cmap__note{
  font-size:11px;
  color:var(--c-muted);
}

.cmap code{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-size:11px;
  color:var(--c-primary);
}


  :root{
    --primary:#9A0002;
    --ink:#0b1220;

    --card-bg:#F6F8FC;
    --border:#D9E1F0;
    --shadow: 0 14px 40px rgba(0, 36, 107, .10);

    --rail: rgba(0, 36, 107, 0.35);
    --gap: 18px;

    --radius: 18px;

    --seg-dur: 760ms;
    --card-dur: 1050ms;
    --ease: cubic-bezier(.18,.85,.2,1);
  }

  .pub-flow, .pf-steps, .pf-step{ overflow: visible !important; }

  .pub-flow{
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
    max-width: 1100px;
    margin: 14px auto 0;
    padding: 26px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #fff;
    color: var(--ink);
    position: relative;
  }

  .pf-head-row{
    display:flex;
    align-items:flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .pf-head h2{
    margin: 0 0 6px;
    font-size: 26px;
    color: var(--primary);
    letter-spacing: .2px;
  }

  .pf-head p{
    margin: 0 0 18px;
    line-height: 1.6;
    opacity: .82;
  }

  /* Learn more (text-only) */
  .pf-learn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 6px 0;
    text-decoration:none;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    white-space: nowrap;
    position: relative;
    opacity: .92;
  }
  .pf-learn::after{
    content:"";
    position:absolute;
    left: 0; right: 0; bottom: -3px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease, opacity .25s ease;
    opacity: .55;
  }
  .pf-learn:hover{ opacity: 1; }
  .pf-learn:hover::after{ transform: scaleX(1); opacity: .9; }

  .pf-steps{
    list-style:none;
    margin: 0;
    padding: 0;
    display:flex;
    gap: var(--gap);
    align-items: stretch;
    position: relative;
  }

  .pf-step{
    flex: 1 1 0;
    position: relative;
    padding-top: 30px;
  }

  /* connector */
  .pf-step:not(:last-child)::after{
    content:"";
    position:absolute;
    top: 15px;
    left: 50%;
    height: 3px;
    width: calc(100% + var(--gap));
    border-radius: 999px;
    background: var(--rail);
    z-index: 3;
    transform-origin: left center;
    transform: scaleX(0);
    animation: segDraw var(--seg-dur) var(--ease) forwards;
    animation-delay: var(--line-delay, 320ms);
  }
  @keyframes segDraw{ to{ transform: scaleX(1); } }

  /* dot */
  .pf-dot{
    position:absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 7px rgba(0,36,107,.12);
    z-index: 5;
  }

  /* card */
  .pf-card{
    position: relative;
    z-index: 2;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 16px 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,.05);

    opacity: 0;
    transform: translateY(18px);
    animation: cardIn var(--card-dur) var(--ease) forwards;
    animation-delay: var(--card-delay, 0ms);
  }
  @keyframes cardIn{ to{ opacity:1; transform: translateY(0); } }

  .pf-top{
    display:flex;
    justify-content: space-between;
    align-items:center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .pf-pill{
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #EEF3FF;
    border: 1px solid #D1DBF2;
    color: var(--primary);
    white-space: nowrap;
  }

  .pf-tag{
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    border: 1px solid rgba(0,36,107,.55);
    white-space: nowrap;
  }

  .pf-title{
    margin: 0 0 6px;
    font-size: 20px;
    color: var(--primary);
  }

  .pf-desc{
    margin: 0 0 12px;
    line-height: 1.6;
    opacity: .85;
    font-size: 14px;
  }

  /* metric box */
  .pf-metric{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 8px 10px;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #F2F5FB;
    border: 1px solid #E2E8F6;
    flex-wrap: wrap;
    text-align: center;
  }

  .pf-metric-label{ font-size: 12px; opacity: .75; }
  .pf-metric-value{
    font-size: 22px;
    font-weight: 750;
    color: var(--primary);
    line-height: 1;
  }
  .pf-metric-unit{ font-size: 12px; opacity: .8; }

  /* bar */
  .pub-flow .pf-metric-bar{
    position: relative !important;
    display:block !important;
    width:100% !important;
    max-width: 320px !important;
    height: 12px !important;
    margin-top: 8px !important;
    border-radius: 999px !important;
    background: #E8EDF8 !important;
    border: 1px solid #D9E1F0 !important;
    overflow: hidden !important;
  }

  /* fill becomes a flex row, label sticks to the right edge of fill */
  .pub-flow .pf-metric-fill{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;

    height:100% !important;
    width: 0% !important; /* default empty */
    border-radius: 999px !important;

    /* fill look like your screenshot */
    background: linear-gradient(90deg, rgba(148, 5, 31, 0.65), #9A0002) !important;

    padding-right: 10px !important; /* space for % */
    transition: width 900ms cubic-bezier(.18,.85,.2,1) !important;
  }

  /* percentage inside fill: hidden until hover */
  .pub-flow .pf-metric-pct{
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .2px !important;
    line-height: 1 !important;
    color: #ffffff !important;
    opacity: 0 !important;
    transform: translateX(6px) !important;
    transition: opacity 220ms ease, transform 220ms ease !important;
    pointer-events: none !important;
    white-space: nowrap !important;
  }

  /* hover triggers fill + show % */
  .pub-flow .pf-step:hover .pf-metric-fill,
  .pub-flow .pf-card:hover .pf-metric-fill,
  .pub-flow .pf-metric:hover .pf-metric-fill{
    width: var(--p, 40%) !important;
  }

  .pub-flow .pf-step:hover .pf-metric-pct,
  .pub-flow .pf-card:hover .pf-metric-pct,
  .pub-flow .pf-metric:hover .pf-metric-pct{
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  @media (max-width: 860px){
    .pf-head-row{ flex-direction: column; align-items: flex-start; }
    .pf-learn{ margin-top: 6px; }

    .pf-steps{ flex-direction: column; gap: 14px; }
    .pf-step{ padding-top: 0; padding-left: 64px; }

    .pf-dot{ left: 28px; top: 2px; transform: none; }

    .pf-step:not(:last-child)::after{
      top: 24px;
      left: 49px;
      width: 3px;
      height: calc(100% + 14px);
      transform-origin: top center;
      transform: scaleY(0);
      animation-name: segDrawV;
    }
    @keyframes segDrawV{ to{ transform: scaleY(1); } }
  }

  @media (prefers-reduced-motion: reduce){
    .pf-step:not(:last-child)::after,
    .pf-card{
      animation: none !important;
      transform: none !important;
      opacity: 1 !important;
    }
    .pub-flow .pf-metric-fill{
      transition: none !important;
      width: var(--p, 40%) !important;
    }
    .pub-flow .pf-metric-pct{
      opacity: 1 !important;
      transform: none !important;
    }
  }


.obj_issue_toc .heading .description img{
  width: 86px !important;
  height: 58px !important;
}

/* === CARD STYLE OVERRIDES === */

/* Setiap article summary jadi card */
.obj_article_summary {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 18px;
    min-height: 230px;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

/* Hover elegan */
.obj_article_summary:hover {
    transform: translateY(-4px);
    border-color: #9A0002;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Hilangkan semua efek float bawaan */
.obj_article_summary .cover {
    float: none !important;
    width: 100% !important;
    margin: 0 0 1rem 0 !important;
    text-align: center;
}

/* Gambar cover (jika ada) */
.obj_article_summary .cover img {
    max-width: 100%;
    max-height: 160px;
    border-radius: 10px;
    object-fit: cover;
}

/* Judul */
.obj_article_summary>.title {
    font-size: 1.05rem !important;
    line-height: 1.4rem !important;
    font-weight: 700;
    margin-bottom: 6px;
}
.obj_article_summary>.title a {
    color: #1a1a1a;
    transition: color .2s ease;
}
.obj_article_summary>.title a:hover {
    color: #9A0002;
}

/* Meta section */
.obj_article_summary .meta {
    font-size: .85rem;
    color: #555;
    padding-top: 4px;
}

/* Pages & published dimodifikasi */
.obj_article_summary .pages,
.obj_article_summary .published {
    color: rgba(0,0,0,0.45) !important;
}

/* Views/download icons */
.obj_article_summary .meta img {
    width: 14px;
    margin-right: 4px;
}

/* Galleys (PDF button) */
.obj_article_summary .galleys_links {
    margin-top: 12px;
}
/* PDF button: outline by default */
.obj_article_summary .galleys_links .obj_galley_link.pdf {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    background: transparent !important;
    border: 2px solid #9A0002;
    color: #9A0002 !important;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    transition: all .25s ease;
}

/* On hover → fill */
.obj_article_summary .galleys_links .obj_galley_link.pdf:hover {
    background: #9A0002 !important;
    color: white !important;
    border-color: #9A0002;
}


/* Authors flag */
.obj_article_summary .authors img {
    border-radius: 2px;
}

/* === RESPONSIVE FIXES === */

/* Two-column grid: diterapkan di container list */
.cmp_article_list.articles {
    display: grid;
    list-style: none;
    padding: 0;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    margin-left: 20px;
    margin-right: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cmp_article_list.articles li {
  margin-bottom: 0 !important;
}

/* Mobile jadi 1 kolom */
@media(max-width: 768px) {
    .cmp_article_list.articles {
        grid-template-columns: 1fr;
    }
}

.page.page_login h1 {
  margin-bottom: 0 !important;
  padding-left: 30px !important;
}

.page.page.page_register h1 {
  margin-bottom: 0 !important;
  padding-left: 30px !important;
}

.logo-foot{
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo-foot img{
  height: 52px;      /* naikkan (coba 40–52px) */
  width: auto;
  max-width: 180px;  /* biar tetap proporsional */
  object-fit: contain;
  display: block;
}


/* Login*/
/* Ensure the page container does not use flexbox for the entire page */
.page.page_login {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align the content from top to bottom */
    padding: 0;
}

/* Keep breadcrumb and title (h1) untouched */
.page.page_login .cmp_breadcrumbs {
    margin-left: 20px;
    margin-top: 10px;
    position: relative;
}

/* Add a login icon at the top of the form */
.page.page_login .cmp_form.cmp_form.login::before {
    content: "\f007";  /* Font Awesome code for login icon */
    font-family: "FontAwesome";  /* Ensure it's using the Font Awesome font */
    font-weight: 900;   /* Ensure the icon is bold */
    font-size: 150px;    /* Make the icon big */
    color: #9A0002;     /* Use your theme color */
    display: block;     /* Make it a block element to place it above the form */
    margin-bottom: 70px; /* Add some space below the icon */
    text-align: center;  /* Center the icon */
}

/* Add a login icon at the top of the form */
.page.page_register .cmp_form.cmp_form.register::before {
    content: "\f234";  /* Font Awesome code for login icon */
    font-family: "FontAwesome";  /* Ensure it's using the Font Awesome font */
    font-weight: 900;   /* Ensure the icon is bold */
    font-size: 150px;    /* Make the icon big */
    color: #9A0002;     /* Use your theme color */
    display: block;     /* Make it a block element to place it above the form */
    margin-bottom: 70px; /* Add some space below the icon */
    text-align: center;  /* Center the icon */
}

/* Add a login icon at the top of the form */
.page.page_lost_password .cmp_form.cmp_form.lost_password::before {
    content: "\f13e";  /* Font Awesome code for login icon */
    font-family: "FontAwesome";  /* Ensure it's using the Font Awesome font */
    font-weight: 900;   /* Ensure the icon is bold */
    font-size: 150px;    /* Make the icon big */
    color: #9A0002;     /* Use your theme color */
    display: block;     /* Make it a block element to place it above the form */
    margin-bottom: 70px; /* Add some space below the icon */
    text-align: center;  /* Center the icon */
}

/* Center the items inside the .buttons container */
.cmp_form.cmp_form.login .fields .buttons {
    display: flex;            /* Use flexbox for centering */
    justify-content: center;  /* Center the items horizontally */
    align-items: center;      /* Center the items vertically (if needed) */
    flex-direction: column;   /* Stack items vertically */
    text-align: center;       /* Ensure that the text inside is centered */
}

/* Optional: Add some space between the items (like buttons and links) */
.cmp_form.cmp_form.login .fields .buttons a,
.cmp_form.cmp_form.login .fields .buttons button {
    margin-top: 10px;         /* Add space between the items */
}

/* Styling for the #username input */
/* Ensure the #username input takes up the full width of its container */
.page.page_login .cmp_form.cmp_form.login .fields #username {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}


/* Styling for the #password input */
.cmp_form.cmp_form.login .fields .password #password {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}

.cmp_form.cmp_form.register .identity #givenName {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}

.cmp_form.cmp_form.register .identity #familyName {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}

.cmp_form.cmp_form.register .identity #affiliation {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}

.cmp_form.cmp_form.register .identity #country {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}

.cmp_form.cmp_form.register .login #email {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}

.cmp_form.cmp_form.register .login #username {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}

.cmp_form.cmp_form.register .login #password {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}

.cmp_form.cmp_form.register .login #password2 {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}

.cmp_form.cmp_form.register .identity legend {
  color: #9A0002
}

.cmp_form.cmp_form.register .login legend {
  color: #9A0002
}

.cmp_form.cmp_form.register .identity .fields .given_name .label{
  color: #9A0002 
}

.cmp_form.cmp_form.register .identity .fields .family_name .label{
  color: #9A0002 
}

.cmp_form.cmp_form.register .identity .fields .affiliation .label{
  color: #9A0002 
}

.cmp_form.cmp_form.register .identity .fields .country .label{
  color: #9A0002 
}

.cmp_form.cmp_form.register .identity .login legend {
  color: #9A0002 
}

.cmp_form.cmp_form.login .fields .password .label{
  color: #9A0002 
}

.cmp_form.cmp_form.login .fields .username .label{
  color: #9A0002 
}

.cmp_form.cmp_form.register .login .fields .email .label{
  color: #9A0002 
}

.cmp_form.cmp_form.register .login .fields .username .label{
  color: #9A0002 
}

.cmp_form.cmp_form.register .login .fields .password .label{
  color: #9A0002 
}


.page.page_login h1 {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 30px;
    width: 100%;
    color: #ffffff;
    font-size: 2em;
    font-weight: bold;
    text-align: left;
    border-radius: 12px 12px 0 0;
}

/* Paragraph Styling */
.page.page_login p {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: normal !important;
    margin-top: 0 !important;
    border-radius: 0 0 12px 12px;
}

/* Center the login form using flexbox */
.page.page_login .cmp_form.cmp_form.login {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px; /* Prevent it from stretching too wide */
    margin-top: 30px; /* Adds some space from the top */
    margin-left: auto;
    margin-right: auto; /* Center the form horizontally */
}

/* Label Styling */
.page.page_login .cmp_form.cmp_form.login label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
    color: #9A0002;
}

/* Input Fields Styling for Email and Password */
.page.page_login .cmp_form.cmp_form.login input[type="text"],
.page.page_login .cmp_form.cmp_form.login input[type="password"] {
    width: 100%;
    padding: 16px;
    margin: 12px 0;
    border-radius: 6px;
    border: 2px solid whitesmoke;
    font-size: 16px;
}

/* Focused Input Fields Border Color */
.page.page_login .cmp_form.cmp_form.login input[type="text"]:focus,
.page.page_login .cmp_form.cmp_form.login input[type="password"]:focus {
    border-color: #9A0002 !important;
    outline: none !important;
    box-shadow: 0 0 5px rgb(202, 7, 7); /* Optional: Add a subtle shadow to highlight the input */
}

/* Button Styling */
.page.page_login .cmp_form.cmp_form.login button.submit {
    background-color: transparent;  /* Make the background transparent initially */
    color: #9A0002;                 /* Set the text color to the theme color */
    padding: 12px 20px;             /* Reduced padding for smaller button */
    border-radius: 6px;
    border: 2px solid whitesmoke;      /* Set the border to the theme color */
    width: 100%;
    cursor: pointer;
    font-size: 16px;                /* Reduced font size */
    font-weight: 600;
    margin-top: 16px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
    box-shadow: none;               /* Remove any inner shadow in outline state */
}

/* Hover state for the button */
.page.page_login .cmp_form.cmp_form.login button.submit:hover {
    background-color: #9A0002; /* Set the background to the theme color */
    color: #ffffff;               /* Change text color to white */
    border: 2px solid #9A0002;  /* Keep the border color the same */
    box-shadow: 0 0 5px rgb(202, 7, 7); /* Add subtle shadow on hover */
}

/* Forgot Password Link Styling */
.page.page_login .cmp_form.cmp_form.login .password a {
    font-size: 14px;
    color: #9A0002;
    text-decoration: none;
    display: block;
    margin-top: 12px;
    text-align: right;
}

.page.page_login .cmp_form.cmp_form.login .password a:hover {
    text-decoration: underline;
}

/* Register Link Styling */
.page.page_login .cmp_form.cmp_form.login .buttons .register {
    font-size: 14px;
    color: #9A0002;
    text-decoration: none;
    display: block;
    text-align: center;
    position: relative;
}

/* Add "Don't have an account yet?" before the register link */
.page.page_login .cmp_form.cmp_form.login .buttons .register::before {
    content: "Don't have an account yet? "; /* Text to add before the link */
    color: #9A0002; /* Color of the additional text */
    font-size: 14px;
    font-weight: normal;
}

/* Hover effect for the register link */
.page.page_login .cmp_form.cmp_form.login .buttons .register:hover {
    text-decoration: underline;
}


/*Register*/

/* Ensure the .page.page_register container uses flexbox to center the form */
.page.page_register {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align the content from top to bottom */
    padding: 0;
}

/* Keep breadcrumb and title (h1) untouched */
.page.page_register .cmp_breadcrumbs {
    margin-left: 20px;
    margin-top: 10px;
    position: relative;
}

.page.page_register h1 {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 30px;
    width: 100%;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    text-align: left;
    border-radius: 12px 12px 0 0 ;
}

/* Paragraph Styling */
.page.page_register p {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
    color: #fff;
    font-size: 1.2em;
    font-weight: normal !important;
    margin-top: 0 !important;
    position: relative;
    border-radius: 0 0 12px 12px;
}

/* Center the register form using flexbox */
.page.page_register .cmp_form.cmp_form.register {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgb(202, 7, 7);
    width: 100%;
    max-width: 800px; /* Prevent it from stretching too wide */
    margin-top: 30px; /* Adds some space from the top */
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto; /* Center the form horizontally */
}

/* Label Styling */
.page.page_register .cmp_form.cmp_form.register label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
    color: #9A0002;
}

/* Input Fields Styling for Email and Password */
.page.page_register .cmp_form.cmp_form.register input[type="text"],
.page.page_register .cmp_form.cmp_form.register input[type="password"] {
    width: 100%;
    padding: 16px;
    margin: 12px 0;
    border-radius: 6px;
    border: 2px solid #ddd;
    font-size: 16px;
}

/* Apply hover/focus effect to all input fields in the register form */
.page.page_register .cmp_form.cmp_form.register input[type="text"]:focus,
.page.page_register .cmp_form.cmp_form.register input[type="password"]:focus,
.page.page_register .cmp_form.cmp_form.register input[type="email"]:focus,
.page.page_register .cmp_form.cmp_form.register input[type="checkbox"]:focus,
.page.page_register .cmp_form.cmp_form.register input[type="select"]:focus,
.page.page_register .cmp_form.cmp_form.register input[type="number"]:focus,
.page.page_register .cmp_form.cmp_form.register select:focus,
.page.page_register .cmp_form.cmp_form.register textarea:focus {
    border-color: #9A0002 !important;  /* Change border color to theme color on focus */
    outline: none !important;          /* Remove the default outline */
    box-shadow: 0 0 5px rgb(202, 7, 7); /* Optional: Add a subtle shadow to highlight the input */
}

/* Apply hover/focus effect to all input fields for general hover state */
.page.page_register .cmp_form.cmp_form.register input[type="text"]:hover,
.page.page_register .cmp_form.cmp_form.register input[type="password"]:hover,
.page.page_register .cmp_form.cmp_form.register input[type="email"]:hover,
.page.page_register .cmp_form.cmp_form.register select:hover,
.page.page_register .cmp_form.cmp_form.register textarea:hover {
    border-color: #9A0002;  /* Change border color to theme color on hover */
}


/* Button Styling */
.page.page_register .cmp_form.cmp_form.register button.submit {
    background-color: transparent;  /* Make the background transparent initially */
    color: #9A0002;                 /* Set the text color to the theme color */
    padding: 12px 20px;             /* Reduced padding for smaller button */
    border-radius: 6px;
    border: 2px solid whitesmoke;      /* Set the border to the theme color */
    width: 100%;
    cursor: pointer;
    font-size: 16px;                /* Reduced font size */
    font-weight: 600;
    margin-top: 16px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
    box-shadow: none;               /* Remove any inner shadow in outline state */
}

/* Hover state for the button */
.page.page_register .cmp_form.cmp_form.register button.submit:hover {
    background-color: #9A0002; /* Set the background to the theme color */
    color: whitesmoke;               /* Change text color to white */
    border: 2px solid #9A0002;  /* Keep the border color the same */
}

/* Forgot Password Link Styling */
.page.page_register .cmp_form.cmp_form.register .password a {
    font-size: 14px;
    color: #9A0002;
    text-decoration: none;
    display: block;
    margin-top: 12px;
    text-align: right;
}

.page.page_register .cmp_form.cmp_form.register .password a:hover {
    text-decoration: underline;
}

/* Login Link Styling in Register Form */
.page.page_register .cmp_form.cmp_form.register .buttons .login {
    font-size: 14px;
    color: #9A0002;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 18px;
    position: relative;
}

/* Add "Already have an account?" before the login link */
.page.page_register .cmp_form.cmp_form.register .buttons .login::before {
    content: "Already have an account? "; /* Text to add before the link */
    color: #9A0002; /* Color of the additional text */
    font-size: 14px;
    font-weight: normal;
}

/* Hover effect for the login link */
.page.page_register .cmp_form.cmp_form.register .buttons .login:hover {
    text-decoration: underline;
}


/* Responsive Design for Smaller Screens */
@media (max-width: 480px) {
    .page.page_register .cmp_form.cmp_form.register {
        padding: 25px;
    }
    .page.page_register .cmp_form.cmp_form.register button.submit {
        padding: 14px;
    }
}

/*Forgot Password*/
/* Ensure the .page.page_register container uses flexbox to center the form */
.page.page_lost_password {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align the content from top to bottom */
    padding: 0;
}

/* Keep breadcrumb and title (h1) untouched */
.page.page_lost_password .cmp_breadcrumbs {
    margin-left: 20px;
    margin-top: 10px;
    position: relative;
}

.page.page_lost_password h1 {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 30px;
    width: 100%;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0 !important;
    text-align: left;
    border-radius: 12px 12px 0 0;
}

/* Paragraph Styling */
.page.page_lost_password p {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding-top: 10px;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 30px;
    color: #fff;
    font-size: 1.2em;
    font-weight: normal !important;
    margin-top: 0 !important;
    position: relative;
    border-radius: 0 0 12px 12px;
}

.page.page_lost_password .cmp_form.lost_password {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgb(202, 7, 7);
    width: 100%;
    max-width: 800px; /* Prevent it from stretching too wide */
    margin-top: 30px; /* Adds some space from the top */
    margin-left: auto;
    margin-right: auto; /* Center the form horizontally */
}

.cmp_form.cmp_form.lost_password .fields .email .label{
  color: #9A0002; 
}

.cmp_form.cmp_form.lost_password .fields #email {
    width: 100% !important;      /* Force input to take 100% width */
    max-width: none !important;   /* Remove any max-width constraints */
    padding: 16px;               /* Adjust padding for larger height */
    font-size: 16px;             /* Font size for readability */
    border-radius: 6px;          /* Rounded corners */
    border: 2px solid whitesmoke;      /* Light border color */
    box-sizing: border-box;      /* Ensure padding and border are included in the width */
    height: 50px
}

/* Button Styling */
.page.page_lost_password .cmp_form.cmp_form.lost_password button.submit {
    background-color: transparent;  /* Make the background transparent initially */
    color: #9A0002;                 /* Set the text color to the theme color */
    padding: 12px 20px;             /* Reduced padding for smaller button */
    border-radius: 6px;
    border: 2px solid 3C4048;      /* Set the border to the theme color */
    width: 100%;
    cursor: pointer;
    font-size: 16px;                /* Reduced font size */
    font-weight: 600;
    margin-top: 16px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
    box-shadow: none;               /* Remove any inner shadow in outline state */
}

/* Register Link Styling */
.page.page_lost_password .cmp_form.cmp_form.lost_password .buttons .register {
    font-size: 14px;
    color: #9A0002;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 18px;
    position: relative;
}


/* Hover state for the button */
.page.page_lost_password .cmp_form.cmp_form.lost_password button.submit:hover {
    background-color: #9A0002; /* Set the background to the theme color */
    color: white;               /* Change text color to white */
    border: 2px solid #9A0002;  /* Keep the border color the same */
}

/* Add "Don't have an account yet?" before the register link */
.page.page_lost_password .cmp_form.cmp_form.lost_password .fields .buttons .register::before {
    content: "Don't have an account yet? "; /* Text to add before the link */
    color: #3C4048; /* Color of the additional text */
    font-size: 14px;
    font-weight: normal;
}

/* Hover effect for the register link */
.page.page_lost_password .cmp_form.cmp_form.lost_password .buttons .register:hover {
    text-decoration: underline;
}

/* Center the items inside the .buttons container */
.cmp_form.cmp_form.lost_password .fields .buttons {
    display: flex;            /* Use flexbox for centering */
    justify-content: center;  /* Center the items horizontally */
    align-items: center;      /* Center the items vertically (if needed) */
    flex-direction: column;   /* Stack items vertically */
    text-align: center;       /* Ensure that the text inside is centered */
}

.page.page_lost_password .cmp_form.cmp_form.lost_password input[type="email"]:focus,
.page.page_lost_password .cmp_form.cmp_form.lost_password select:focus,
.page.page_lost_password .cmp_form.cmp_form.lost_password textarea:focus {
    border-color: #9A0002 !important;  /* Change border color to theme color on focus */
    outline: none !important;          /* Remove the default outline */
    box-shadow: 0 0 5px rgb(202, 7, 7); /* Optional: Add a subtle shadow to highlight the input */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 480px) {
    .page.lost_password .cmp_form.cmp_form.lost_password {
        padding: 25px;
    }
    .page.lost_password .cmp_form.cmp_form.lost_password button.submit {
        padding: 14px;
    }
}

/*Reset Password Worked*/
.page.page_message {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align the content from top to bottom */
    padding: 0;
}

/* Keep breadcrumb and title (h1) untouched */
.page.page_message .cmp_breadcrumbs {
    margin-left: 20px;
    margin-top: 10px;
    position: relative;
}

.page.page_message h1 {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 30px;
    width: 100%;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0 !important;
    text-align: left;
    border-radius: 12px 12px 0 0;
}

/* Paragraph Styling */
.page.page_message .description {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
    color: #fff;
    font-size: 1.2em;
    font-weight: normal !important;
    margin-top: 0 !important;
    position: relative;
    border-radius: 0 0 12px 12px;
}

/* Login Link Styling in Register Form */
.page.page_message .cmp_back_link {
    font-size: 14px;
    color: #9A0002;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 18px;
    position: relative;
}

/* Add "Already have an account?" before the login link */
.page.page_message .cmp_back_link::before {
    content: "Password reset successful. Please "; /* Text to add before the link */
    color: #333; /* Color of the additional text */
    font-size: 14px;
    font-weight: normal;
}

/* Hover effect for the login link */
.page.page_message .cmp_back_link:hover {
    text-decoration: underline;
}

/* Searche Page*/
.page.page_search .cmp_breadcrumbs {
  padding-right: 30px;
  padding-left: 30px;
}

.page.page_search h1 {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding: 20px;
    width: 100%; 
    color: #fff;
    font-size: 2em;  /* Increase text size */
    font-weight: bold;  /* Make the text bold */
    margin-bottom: 0 !important;
    margin-right: 0 !important;                      /* Position the h3 element at the top */
    border-radius: 12px;
}

.page.page_search .search_input {
    padding: 30px;
}

/* Input Fields Styling for Email and Password */
.page.page_search .cmp_form.cmp_form.search input[type="text"] {
    width: 100%;
    padding: 16px;
    margin: 12px 0;
    border-radius: 6px;
    border: 2px solid #9A0002;
    font-size: 16px;
}

/* Focused Input Fields Border Color */
.page.page_search .cmp_form.cmp_form.search input[type="text"]:focus {
    border-color:  #9A0002!important;
    outline: none !important;
}

/* Base button styling */
.page.page_search .cmp_form .submit {
  display: flex;
  justify-content: center;
}

.page.page_search .cmp_form .submit button.submit {
  background-color: transparent;
  color: #9A0002;
  padding: 12px 20px;
  border-radius: 6px;
  border: 2px solid whitesmoke;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;  /* Make width 100% */
  max-width: 800px;  /* Set max width */
  font-family: Arial, sans-serif;
  position: relative;
  margin-left: auto;  /* Center button horizontally */
  margin-right: auto;  /* Center button horizontally */
}

/* Hover effect */
.page.page_search .cmp_form .submit button.submit:hover {
  background-color: #9A0002;
  color: #ffffff;
  border-color: #9A0002;
  box-shadow: 0 0 5px rgb(202, 7, 7);
}

/* Replace the default text or enhance with an icon */
.page.page_search .cmp_form .submit button.submit::after {
    content: "";
    display: none; /* optional */
}

/* Style all inputs and selects inside the advanced search fieldset */

.search_advanced {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.search_advanced legend {
  font-weight: bolder !important;
  color: #9A0002;
}

.search_advanced .date_range .from fieldset legend {
  font-weight: bold;
  color: #9A0002;
}

.search_advanced .author .label {
  font-weight: bold;
  color: #9A0002;
}

.search_advanced .date_range .to fieldset legend {
  font-weight: bold;
  color: #9A0002;
}

.search_results .obj_article_summary {
  padding: 15px !important;
  border: 2px solid #9A0002;  /* ✅ This is the correct format */
  border-radius: 12px;
  margin: 30px !important;
}

.search_results .obj_article_summary .meta .authors {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.page.page_search .cmp_pagination {
  padding-right: 30px !important;
  color: #9A0002;
  font-weight: bold;
}

.search_advanced input[type="text"],
.search_advanced select {
    width: 100%;
    padding: 16px;
    margin: 12px 0;
    border-radius: 6px;
    border: 2px solid #fff;
    font-size: 16px;
    box-sizing: border-box;
}

/* Hover and focus effects */
.search_advanced input[type="text"]:focus,
.search_advanced select:focus {
    border-color: #9A0002 !important;
    outline: none !important;
   box-shadow: 0 0 5px rgb(202, 7, 7); /* Optional: Add a subtle shadow to highlight the input */
}

[role="status"] .cmp_notification.notice {
  padding: 30px;
  text-align: center;
  color: #9A0002;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}



[role="status"] .cmp_notification.notice {
  background: white;              /* Set white background */
  border: none !important;        /* Remove any default border */
  border-radius: 50%;             /* Make it circular (50% for perfect circle) */
  width: 350px;                   /* Set specific width */
  height: 350px;                  /* Set specific height */
  padding: 0;                     /* Remove padding */
  color: #9A0002;                 /* Use your theme color */
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}


/* Add large Font Awesome search icon on top */
[role="status"] .cmp_notification.notice::before {
  content: "\f1de"; /* FontAwesome envelope icon for "Contact" */
  font-family: "FontAwesome";
  font-size: 150px; /* <-- Add this to scale the icon */
  color: #9A0002;
  display: block;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 75px;
}

/* Add extra message after the main text */
[role="status"] .cmp_notification.notice::after {
  content: " — Try adjusting your filters";
  font-size: 16px;
  font-weight: normal;
  color: #9A0002;
  margin-bottom: 15px;
}

/* Register Complete */
.page.page_register_complete h1 {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 30px;
    width: 100%;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0 !important;
    text-align: left;
    border-radius: 12px 12px 0 0;
}

.page.page_register_complete p {
    background: #9A0002;
    background-blend-mode: screen;
    text-align: justify;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
    color: #fff;
    font-size: 1.2em;
    font-weight: normal !important;
    margin-top: 0 !important;
    position: relative;
    border-radius: 0 0 12px 12px;
}

.page.page_register_complete .registration_complete_actions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page.page_register_complete .registration_complete_actions li {
  position: relative;
  padding: 12px 40px 12px 16px;
  margin: 10px 0;
  background-color: #FCF8F7;
  border: 1px solid #9A0002;
  border-radius: 8px;
  color: #333;
  font-size: 16px;
  transition: background-color 0.2s;
}

.page.page_register_complete .registration_complete_actions li a {
  color: #9A0002;
  text-decoration: none; /* optional: remove underline */
}

.page.page_register_complete .registration_complete_actions li a:hover {
  text-decoration: underline; /* optional: hover effect */
}

.page.page_register_complete .registration_complete_actions li::after {
  font-family: "FontAwesome";
  color: #9A0002;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* Specific icons for each list item */
/* Icons for each list item */
.page.page_register_complete .registration_complete_actions .view_submissions::after {
  content: "\f06e"; /* fa-eye */
}

.page.page_register_complete .registration_complete_actions .new_submission::after {
  content: "\f055"; /* fa-plus-circle */
}

.page.page_register_complete .registration_complete_actions .edit_profile::after {
  content: "\f044"; /* fa-edit */
}

.page.page_register_complete .registration_complete_actions .browse::after {
  content: "\f07c"; /* fa-folder-open */
}

#customblock-menu .current-issue a {
  position: relative;
  display: inline-block;
  font-weight: bold;
  align-items: center;
  text-align: center;
  font-size: 20px;
  padding: 6px 12px;
  color: #fff;

  /* Gradient (adapted to #9A0002 theme) */
  background: linear-gradient(
    90deg,
    #9A0002,
    #c40006,
    #4a0001,
    #9A0002
  );
  background-size: 300% 300%;
  animation: pulseGradient 6s ease-in-out infinite;

  border-radius: 6px;
  overflow: hidden;

  /* TEXT pulse only (adapted) */
  text-shadow:
    0 0 6px #9A0002,
    0 0 12px #c40006;
  animation: textPulse 2.8s ease-in-out infinite;
}


.sidebar-section.current-issue {
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center;      /* Vertical center (optional) */
  text-align: center;
  margin-bottom: 15px;
}

/* NEON SHINE SWEEP — unchanged */
#customblock-menu .current-issue a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.65) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: neonSweep 3.2s linear infinite;
}

/* Background pulse — unchanged */
@keyframes pulseGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Neon sweep — unchanged */
@keyframes neonSweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* TEXT-ONLY NEON PULSE */
@keyframes textPulse {
  0% {
    text-shadow:
      0 0 4px #9A0002,
      0 0 10px #a80c0f;
    transform: scale(1);
  }
  50% {
    text-shadow:
      0 0 8px #a80c0f,
      0 0 16px #ffffff;
    transform: scale(1.05);
  }
  100% {
    text-shadow:
      0 0 4px #9A0002,
      0 0 10px #a80c0f;
    transform: scale(1);
  }
}

.aillceF{
    --ink:rgba(255,255,255,.92);
    --muted:rgba(255,255,255,.66);
    --line:rgba(255,255,255,.12);

    background: none;

    color: var(--ink);
    font-family: 'Segoe UI', Roboto, sans-serif !important;
    margin-top: 40px;
  }

  /* CTA */
  .aillceF-cta{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
    transform: translateY(28px);
  }
  .aillceF-ctaInner{
    border-radius: 22px;
    padding: 18px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 14px;

    background: linear-gradient(90deg, rgba(56,189,248,.18), rgba(255,255,255,.06));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 34px rgba(0,0,0,.30);
    backdrop-filter: blur(6px);
  }
  .aillceF-ctaLeft{
    display:flex;
    align-items:center;
    gap: 14px;
    min-width: 0;
  }
  .aillceF-ctaLogo{
    width: 100px;
    height: 100px;
    object-fit: contain;
    padding: 6px;
  }
  .aillceF-ctaOrg{
    font-weight: 800;
    letter-spacing: .4px;
    font-size: 12px;
    color: rgba(255,255,255,.80);
    margin-bottom: 4px;
  }
  .aillceF-ctaHeadline{
    font-weight: 800;
    font-size: 26px;
    line-height: 1.1;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 720px;
  }
  .aillceF-ctaBtn{
    color:#fff;
    text-decoration:none;
    border: 1px solid rgba(255,255,255,.40);
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 800;
    background: rgba(255,255,255,.08);
    white-space: nowrap;
  }
  .aillceF-ctaBtn:hover{ background: rgba(255,255,255,.14); }

  /* GRID */
  .aillceF-inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 62px 18px 18px; /* ruang utk CTA */
    display:grid;
    grid-template-columns: 1.45fr 1fr 1fr .85fr;
    gap: 26px;
  }

  .aillceF-head{
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 800;
    color: rgba(255,255,255,.88);
    margin-bottom: 14px;
  }

  .aillceF-badge{
    width: fit-content;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
    font-weight: 800;
    letter-spacing: .6px;
    margin-bottom: 12px;
  }

  .aillceF-title{
    font-weight: 800;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .aillceF-desc{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
    max-width: 46ch;
  }

  .aillceF-text{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    display:grid;
    gap: 6px;
  }

  .aillceF-links{
    margin-top: 14px;
    display:grid;
    gap: 12px;
  }

  .aillceF-links a{
    color: rgba(255,255,255,.78);
    text-decoration: none;
    width: fit-content;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .aillceF-links a:hover{
    color:#fff;
    border-bottom-color: rgba(255,255,255,.30);
  }

  .aillceF-muted{
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin-top: 2px;
  }

  .aillceF-social{
    margin-top: 14px;
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .aillceF-ico{
    width: 40px;
    height: 40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.90);
    text-decoration: none;
  }
  .aillceF-ico:hover{
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.22);
  }

  /* MAP */
  .aillceF-mapWrap{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px 18px;
  }
  .aillceF-map{
    border-radius: 16px;
    overflow:hidden;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
  }
  .aillceF-map iframe{
    width:100%;
    height: 320px;
    border:0;
    display:block;
  }

  /* BOTTOM */
  .aillceF-bottom{
    border-top: 1px solid var(--line);
    padding: 14px 0 18px;
  }
  .aillceF-bottomInner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
    display:flex;
    justify-content:space-between;
    gap: 10px;
    flex-wrap:wrap;
    color: rgba(255,255,255,.70);
    font-size: 13px;
  }

  /* Responsive */
  @media (max-width: 980px){
    .aillceF-inner{ grid-template-columns: 1fr 1fr; }
    .aillceF-desc{ max-width: none; }
    .aillceF-ctaHeadline{ font-size: 22px; max-width: 520px; }
  }
  @media (max-width: 640px){
    .aillceF-ctaInner{ flex-direction:column; align-items:flex-start; }
    .aillceF-ctaHeadline{ white-space: normal; max-width: none; }
    .aillceF-cta{ transform: translateY(16px); }
    .aillceF-inner{ grid-template-columns: 1fr; padding-top: 54px; }
    .aillceF-map iframe{ height: 300px; }
  }

 .aboutB{
  --primary:#9A0002;            /* ganti dari biru ke merah ini */
  --border:rgba(0,0,0,.08);
  --muted:rgba(0,0,0,.62);

  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  max-width: 980px;
  margin: 14px auto 0;
}

.aboutB-grid{
  display:flex;
  gap:14px;
  align-items:stretch;
}

.aboutB-text{
  flex: 1 1 auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px 18px 14px;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}

.aboutB-text h2{
  margin:0 0 10px;
  font-size:28px;
  color: var(--primary);        /* pakai warna baru */
}

.aboutB-text p{
  margin:0 0 12px;
  font-size:15px;
  line-height:1.75;
  color: rgba(0,0,0,.82);
  text-align: justify;
}

.aboutB-note{
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.06);
  font-size:14px !important;
  color: rgba(0,0,0,.74);
}

/* RIGHT SIDE */
.aboutB-side{
  flex: 0 0 320px;
  width: 320px;
  display:flex;
  flex-direction:column;
  gap:10px;

  position: sticky;             /* <-- ini bikin "stay" saat scroll */
  top: 12px;                    /* jarak dari atas layar */
  align-self: flex-start;       /* penting supaya sticky jalan di flex container */
}

.aboutB-coverCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}

.aboutB-cover{
  width:100%;
  height:auto;
  display:block;
  object-fit: cover;
}

.aboutB-mini{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
  padding:10px 12px;
}

/* garis aksen tipis biar terasa branded (optional tapi keren) */
.aboutB-mini{ border-left: none !important; }



.mrow{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:10px;
  padding:10px 8px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.mrow:last-child{ border-bottom:none; }

.mrow .k{
  font-size:12px;
  font-weight:800;
  color: var(--muted);
}
.mrow .v{
  font-size:13px;
  font-weight:750;
  color: rgba(0,0,0,.86);
  line-height:1.35;
}

/* Responsif */
@media (max-width: 900px){
  .aboutB-side{ flex: 0 0 300px; width:300px; }
}
@media (max-width: 820px){
  .aboutB-grid{ flex-direction:column; }
  .aboutB-side{
    width:100%;
    flex: 0 0 auto;

    position: static;          /* matikan sticky di mobile biar tidak aneh */
    top: auto;
    align-self: auto;
  }
  .mrow{ grid-template-columns: 140px 1fr; }
}

  .ojsFlexWrap{
    --navy:#9A0002; --soft:#CADDFD; --border:rgba(0,0,0,.08);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    max-width:980px; margin:8px auto 0;
    display:block;
  }

  /* Cover di atas biar gak tinggi kurus */
  .ojsFlexCover{
    border:1px solid var(--border);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 22px rgba(0,0,0,.05);
    height:240px;
    background:#fff;
    margin-bottom:14px;
  }
  .ojsFlexCoverImg{ width:100%; height:100%; object-fit:cover; display:block; }

  .ojsFlexCard{
    border:1px solid var(--border);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 22px rgba(0,0,0,.05);
    background:#fff;
  }
  .ojsFlexHead{
    padding:16px 18px;
    border-bottom:1px solid rgba(0,0,0,.06);
    background:linear-gradient(180deg, rgba(0,36,107,.06), rgba(0,0,0,0));
  }
  .ojsFlexHead h2{ margin:0; font-size:22px; color:#9A0002; }
  .ojsFlexHead p{ margin:6px 0 0; font-size:13px; color:rgba(0,0,0,.62); }

  /* 2 kolom pakai flex (lebih kebal override OJS) */
  .ojsFlexFacts{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:10px !important;
    padding:14px 18px 18px;
  }

  .ojsFlexItem{
    flex: 1 1 calc(50% - 10px);  /* 2 kolom */
    min-width: 260px;            /* kalau container terlalu sempit, otomatis turun */
    border:1px solid rgba(0,0,0,.06);
    border-radius:14px;
    padding:12px;
    background:#fff;
    box-sizing:border-box;
  }

  .ojsFlexItem .k{
    font-size:12px;
    font-weight:750;
    color:rgba(0,0,0,.55);
    margin-bottom:6px;
  }
  .ojsFlexItem .v{
    font-size:14px;
    font-weight:650;
    color:rgba(0,0,0,.88);
    line-height:1.35;
  }

  .b{
    display:inline-flex; align-items:center;
    padding:6px 10px; border-radius:999px;
    background:rgba(255, 212, 212, 0.705);
    border:1px solid rgba(0,36,107,.18);
    color:var(--navy); font-weight:800; font-size:12px;
  }
  .l{ color:#0b63ce; text-decoration:none; border-bottom:1px solid rgba(11,99,206,.25); }

  @media (max-width:520px){
    .ojsFlexCover{ height:180px; }
    .ojsFlexItem{ flex: 1 1 100%; min-width: 0; }
  }

.pkp_site_name {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pkp_site_name > a {
  padding-top: 0;
  padding-bottom: 0;
}

.pkp_site_nav_menu {
  background: none !important;
}

/* Table Menu Block Styles */
.table-menu-block {
margin-bottom: 1.5rem;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(142, 124, 195, 0.1);
}

.menu-table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
border-radius: 12px;
overflow: hidden;
}

.menu-header-cell {
background: #9A0002;
color: #f0f0f0;
padding: 1rem 1.5rem;
font-weight: 600;
font-size: 1.1rem;
text-align: center;
border-bottom: 1px solid rgba(142, 124, 195, 0.2);
}

.menu-header-cell i {
margin-right: 0.5rem;
}

.menu-item-cell {
background-color: #ffffff;
padding: 0;
border-bottom: 1px solid rgba(142, 124, 195, 0.1);
}

.menu-item-cell:last-child {
border-bottom: none;
}

.table-menu-link {
display: block;
padding: 0.875rem 1.5rem;
color: #333;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
width: 100%;
box-sizing: border-box;
}

.table-menu-link:hover {
background: #9A000279;


color: #ffffff;
padding-left: 2rem;
}

.table-menu-link i {
color: #41D1CC;
margin-right: 0.75rem;
width: 16px;
text-align: center;
font-size: 0.9rem;
}

.pkp_site_name_wrapper {
  padding-left: 0;
  padding-right: 0;
}
/* .pkp_navigation_user_wrapper {top: 0; right: 0; padding-right:30px;} */
.pkp_brand_footer {
  display: none;
}

#customblock-main-menu td a {
  display: block;
  padding: 0.5rem 0rem;
  color: #41D1CC;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

#customblock-main-menu td a:hover {
  color: #41D1CC !important;
  text-decoration: none;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

/* ===== JLEMR Editorial Team — Cards using PHOTO column ===== */

/* Break the table and build a card grid */
.pkp_page_EditorialTeam .tabel_editor > table{
  display:block !important;
  width:100% !important;
  border-collapse:separate !important;
  border-spacing:0 !important;
}

/* Hide the header tbody (ROLE/PHOTO/NAME/…) */
.pkp_page_EditorialTeam .tabel_editor > table > tbody:first-of-type{
  display:none !important;
}

/* Grid for members */
.pkp_page_EditorialTeam .tabel_editor > table > tbody:nth-of-type(2){
  display:grid !important;
  grid-template-columns:repeat(auto-fill, minmax(210px,1fr));
  gap:14px;
  margin:0; padding:0;
}

/* Each row is a compact card */
.pkp_page_EditorialTeam .tabel_editor > table > tbody:nth-of-type(2) > tr{
  display:block !important;
  position:relative !important;
  height:240px;                      /* compact size */
  border-radius:12px;
  overflow:hidden !important;
  background:#EAF2F9;                /* fallback if no photo */
  box-shadow:0 6px 16px rgba(5,76,139,.14);
  transition:transform .2s ease, box-shadow .2s ease;
  isolation:isolate;
}
.pkp_page_EditorialTeam .tabel_editor > table > tbody:nth-of-type(2) > tr:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(5,76,139,.22);
}

/* Reset cell styles */
.pkp_page_EditorialTeam .tabel_editor td{
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
}

/* ===== BACKGROUND PHOTO from PHOTO column (2nd TD) ===== */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(2){
  width:0 !important; height:0 !important; overflow:visible !important; /* keep DOM, hide box */
}
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(2) img.profile{
  position:absolute !important;
  inset:0 !important;
  width:100% !important; height:100% !important;
  object-fit:cover !important;
  z-index:-1;
  filter:saturate(1.05) contrast(1.03);
}

/* Readability overlay (tinted with #054C8B) */
.pkp_page_EditorialTeam .tabel_editor > table > tbody:nth-of-type(2) > tr::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:54%;
  background:linear-gradient(
    180deg,
    rgba(5,76,139,0) 0%,
    rgba(5,76,139,.35) 40%,
    rgba(0,0,0,.62) 85%,
    rgba(0,0,0,.78) 100%
  );
  pointer-events:none;
}

/* ===== TEXT OVERLAYS (based on new column order) ===== */
/* ROLE = 1st TD */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(1){
  position:absolute !important; left:12px; right:12px; bottom:92px;
  text-align:center; color:#FFFFFF !important;
  font:700 11px/1.2 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  letter-spacing:.45px; text-transform:uppercase;
  text-shadow:0 1px 2px rgba(0,0,0,.45);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; z-index:1;
}

/* NAME = 3rd TD (hide <br>, keep text) */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(3){
  position:absolute !important; left:12px; right:12px; bottom:64px;
  text-align:center; color:#FFFFFF !important;
  font:800 16px/1.25 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  text-shadow:0 1.5px 3px rgba(0,0,0,.45);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; z-index:1;
}
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(3) br{ display:none; }

/* AFFILIATION = 5th TD */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(5){
  position:absolute !important; left:12px; right:12px; bottom:40px;
  text-align:center; color:#EAF2F9 !important;
  font:600 11px/1.35 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; z-index:1;
}

/* ===== FLAG (COUNTRY = 4th TD) small icon; hide if photo exists ===== */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(4){
  position:absolute !important; left:12px; right:12px; bottom:26px;
  text-align:center; z-index:1;
}
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(4) img{
  width:26px !important; height:auto !important;
  border-radius:4px; box-shadow:0 1px 3px rgba(0,0,0,.25);
}
/* If a PHOTO is present, hide flag to avoid clutter */
.pkp_page_EditorialTeam .tabel_editor tr:has(td:nth-child(2) img.profile) > td:nth-child(4){
  display:none !important;
}

/* ===== BADGES (PROFILE ID = 6th TD) tiny round chips ===== */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(6){
  position:absolute !important; left:0; right:0; bottom:8px;
  display:flex !important; justify-content:center; align-items:center; gap:6px; z-index:1;
}
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(6) img{
  width:22px !important; height:22px !important; object-fit:contain;
  border-radius:50%; background:#FFFFFF; padding:3px;
  box-shadow:0 2px 4px rgba(0,0,0,.25);
}

/* ===== Fix pack: flag alignment/size/spacing ===== */

/* Move the affiliation up a bit so it never collides with the flag */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(5){
  bottom: 52px !important;   /* was 40px */
}

/* Place the flag neatly between affiliation and badges */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(4){
  left: 0 !important;
  right: 0 !important;
  bottom: 30px !important;   /* clear gap from affiliation above and badges below */
  text-align: center !important;
  height: 18px !important;
  line-height: 18px !important;
  z-index: 1 !important;
}

/* Flag image: never stretch; small, centered, with a subtle border */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(4) img{
  width: 22px !important;         /* compact */
  height: 14px !important;        /* consistent flag ratio */
  object-fit: cover !important;
  display: inline-block !important;
  vertical-align: middle !important;
  border: 1px solid #FFFFFF !important;
  border-radius: 3px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.25) !important;
  margin: 0 auto !important;
}

/* Badges stay at the very bottom */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(6){
  bottom: 8px !important;
}

/* ===== JLEMR — Card layout for Editorial + Reviewer Team (PHOTO in 2nd TD) ===== */

/* Apply to BOTH pages */
.pkp_page_EditorialTeam .tabel_editor > table,
.pkp_page_ReviewerTeam  .tabel_editor > table{
  display:block !important;
  width:100% !important;
  border-collapse:separate !important;
  border-spacing:0 !important;
}

/* Hide the header (ROLE/PHOTO/NAME/…) */
.pkp_page_EditorialTeam .tabel_editor > table > tbody:first-of-type,
.pkp_page_ReviewerTeam  .tabel_editor > table > tbody:first-of-type{
  display:none !important;
}

/* Grid for members */
.pkp_page_EditorialTeam .tabel_editor > table > tbody:nth-of-type(2),
.pkp_page_ReviewerTeam  .tabel_editor > table > tbody:nth-of-type(2){
  display:grid !important;
  grid-template-columns:repeat(auto-fill, minmax(210px,1fr));
  gap:14px;
  margin:0; padding:0;
}

/* Each row becomes a compact card */
.pkp_page_EditorialTeam .tabel_editor > table > tbody:nth-of-type(2) > tr,
.pkp_page_ReviewerTeam  .tabel_editor > table > tbody:nth-of-type(2) > tr{
  display:block !important;
  position:relative !important;
  height:240px;                      /* compact size */
  border-radius:12px;
  overflow:hidden !important;
  background:#EAF2F9;                /* fallback if no photo */
  box-shadow:0 6px 16px rgba(5,76,139,.14);
  transition:transform .2s ease, box-shadow .2s ease;
  isolation:isolate;
}
.pkp_page_EditorialTeam .tabel_editor > table > tbody:nth-of-type(2) > tr:hover,
.pkp_page_ReviewerTeam  .tabel_editor > table > tbody:nth-of-type(2) > tr:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(5,76,139,.22);
}

/* Reset cell styles */
.pkp_page_EditorialTeam .tabel_editor td,
.pkp_page_ReviewerTeam  .tabel_editor td{
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
}

/* ===== BACKGROUND PHOTO from PHOTO column (2nd TD) ===== */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(2),
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(2){
  width:0 !important; height:0 !important; overflow:visible !important; /* keep DOM, hide box */
}
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(2) img.profile,
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(2) img.profile{
  position:absolute !important;
  inset:0 !important;
  width:100% !important; height:100% !important;
  object-fit:cover !important;
  z-index:-1;
  filter:saturate(1.05) contrast(1.03);
}

/* Readability overlay (tinted with #054C8B) */
.pkp_page_EditorialTeam .tabel_editor > table > tbody:nth-of-type(2) > tr::after,
.pkp_page_ReviewerTeam  .tabel_editor > table > tbody:nth-of-type(2) > tr::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:54%;
  background:linear-gradient(
    180deg,
    rgba(5,76,139,0) 0%,
    rgba(5,76,139,.35) 40%,
    rgba(0,0,0,.62) 85%,
    rgba(0,0,0,.78) 100%
  );
  pointer-events:none;
}

/* ===== TEXT OVERLAYS ===== */
/* ROLE = 1st TD */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(1),
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(1){
  position:absolute !important; left:12px; right:12px; bottom:92px;
  text-align:center; color:#FFFFFF !important;
  font:700 11px/1.2 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  letter-spacing:.45px; text-transform:uppercase;
  text-shadow:0 1px 2px rgba(0,0,0,.45);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; z-index:1;
}

/* NAME = 3rd TD (hide <br>, keep text) */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(3),
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(3){
  position:absolute !important; left:12px; right:12px; bottom:64px;
  text-align:center; color:#FFFFFF !important;
  font:800 16px/1.25 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  text-shadow:0 1.5px 3px rgba(0,0,0,.45);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; z-index:1;
}
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(3) br,
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(3) br{ display:none; }

/* AFFILIATION = 5th TD (initial position) */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(5),
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(5){
  position:absolute !important; left:12px; right:12px; bottom:40px;
  text-align:center; color:#EAF2F9 !important;
  font:600 11px/1.35 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; z-index:1;
}

/* ===== FLAG (COUNTRY = 4th TD) small icon ===== */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(4),
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(4){
  position:absolute !important; left:12px; right:12px; bottom:26px;
  text-align:center; z-index:1;
}
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(4) img,
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(4) img{
  width:26px !important; height:auto !important;
  border-radius:4px; box-shadow:0 1px 3px rgba(0,0,0,.25);
}

/* If a PHOTO is present, hide flag to avoid clutter (Chrome/Safari support :has) */
.pkp_page_EditorialTeam .tabel_editor tr:has(td:nth-child(2) img.profile) > td:nth-child(4),
.pkp_page_ReviewerTeam  .tabel_editor tr:has(td:nth-child(2) img.profile) > td:nth-child(4){
  display:none !important;
}

/* ===== BADGES (PROFILE ID = 6th TD) tiny round chips ===== */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(6),
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(6){
  position:absolute !important; left:0; right:0; bottom:8px;
  display:flex !important; justify-content:center; align-items:center; gap:6px; z-index:1;
}
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(6) img,
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(6) img{
  width:22px !important; height:22px !important; object-fit:contain;
  border-radius:50%; background:#FFFFFF; padding:3px;
  box-shadow:0 2px 4px rgba(0,0,0,.25);
}

/* ===== Fix pack: flag alignment/size/spacing (applies to both pages) ===== */

/* Move affiliation up a bit so it never collides with the flag */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(5),
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(5){
  bottom: 52px !important;   /* was 40px */
}

/* Place the flag neatly between affiliation and badges */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(4),
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(4){
  left: 0 !important;
  right: 0 !important;
  bottom: 30px !important;   /* clear gap from affiliation above and badges below */
  text-align: center !important;
  height: 18px !important;
  line-height: 18px !important;
  z-index: 1 !important;
}

/* Flag image: never stretch; small, centered, with a subtle border */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(4) img,
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(4) img{
  width: 22px !important;         /* compact */
  height: 14px !important;        /* consistent flag ratio */
  object-fit: cover !important;
  display: inline-block !important;
  vertical-align: middle !important;
  border: 1px solid #FFFFFF !important;
  border-radius: 3px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.25) !important;
  margin: 0 auto !important;
}

/* Badges stay pinned to the bottom */
.pkp_page_EditorialTeam .tabel_editor tr > td:nth-child(6),
.pkp_page_ReviewerTeam  .tabel_editor tr > td:nth-child(6){
  bottom: 8px !important;
}


.pkp_navigation_primary > li > a:hover {
  color: #1F91D1 !important; /* Gold text */
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Add different icons for each menu item in #customblock-main-menu */
#customblock-main-menu tbody tr:nth-child(1) td a::before {
  content: "\f02d"; /* FontAwesome book icon for "Focus and Scope" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(2) td a::before {
  content: "\f0c0"; /* FontAwesome users icon for "Editorial Teams" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(3) td a::before {
  content: "\f0f3"; /* FontAwesome bell icon for "Reviewer Teams" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(4) td a::before {
  content: "\f02d"; /* FontAwesome book icon for "Publication Ethics" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(5) td a::before {
  content: "\f0e0"; /* FontAwesome envelope icon for "Peer Review Process" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(6) td a::before {
  content: "\f1f9"; /* FontAwesome copyright icon for "Copyright Notice" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(7) td a::before {
  content: "\f09e"; /* FontAwesome open-access icon for "Open Access Policy" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(8) td a::before {
  content: "\f12e"; /* FontAwesome shield icon for "Plagiarism Screening" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(9) td a::before {
  content: "\f09d"; /* FontAwesome money icon for "Author Fee" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(10) td a::before {
  content: "\f02d"; /* FontAwesome book icon for "Author Guidelines" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(11) td a::before {
  content: "\f023"; /* FontAwesome lock icon for "Privacy Statement" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

#customblock-main-menu tbody tr:nth-child(12) td a::before {
  content: "\f133"; /* FontAwesome calendar-alt icon for "Publication Frequency" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

.pkp_navigation_primary > li:nth-child(1) > a::before {
  content: "\f015"; /* FontAwesome home icon for "Home" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

.pkp_navigation_primary > li:nth-child(2) > a::before {
  content: "\f0c1"; /* FontAwesome link icon for "Current" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

.pkp_navigation_primary > li:nth-child(3) > a::before {
  content: "\f15c"; /* FontAwesome archive icon for "Archives" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

.pkp_navigation_primary > li:nth-child(4) > a::before {
  content: "\f0ea"; /* FontAwesome file-text icon for "Submissions" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

.pkp_navigation_primary > li:nth-child(5) > a::before {
  content: "\f129"; /* FontAwesome info-circle icon for "About" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

.pkp_navigation_primary > li:nth-child(6) > a::before {
  content: '';
  display: inline-block;
  width: 25px; /* Icon width */
  height: 20px; /* Icon height */
  background-image: url('https://journal.abcollab.id/public/site/images/admin/abc-stempel-1.png');
  background-size: cover; /* Ensure image covers the space */
  background-repeat: no-repeat;
  vertical-align: middle; /* Align image vertically in the middle */
  margin-right: 8px; /* Space between the image and text */
}

/* Dropdown menu items under "About" */
.pkp_navigation_primary > li:nth-child(5) ul.dropdown-menu li:nth-child(1) > a::before {
  content: "\f0a1"; /* FontAwesome book icon for "About the Journal" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

.pkp_navigation_primary > li:nth-child(5) ul.dropdown-menu li:nth-child(2) > a::before {
  content: "\f023"; /* FontAwesome lock icon for "Privacy Statement" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

.pkp_navigation_primary > li:nth-child(5) ul.dropdown-menu li:nth-child(3) > a::before {
  content: "\f0e0"; /* FontAwesome envelope icon for "Contact" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

.pkp_navigation_primary > li:nth-child(3) ul.dropdown-menu li:nth-child(4) > a::before {
  content: "\f0e0"; /* FontAwesome envelope icon for "Contact" */
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
}

/* Navigation For Register and Login */
ul#navigationUser > li.profile {
  border-radius: 5px;
}

ul#navigationUser > li.profile > a:hover {
  color: #41D1CC;
}

/* ul#navigationUser > li:first-child > a::before {
  content: '<span class="fa fa-user-circle-o"></span>&nbsp; Register';
} */

/* Navigation Primary */

.pkp_nav_list > li {
  background: none;
}

.pkp_nav_list > li > a {
  color: white;
}

.pkp_navigation_primary > li > a {
  border-bottom: 3px solid transparent;
}

.pkp_navigation_primary > li > a:hover {
  color: #ffffff;
}

.pkp_navigation_primary > li:first-child a {
  margin-left: 0.5em;
}

.pkp_navigation_primary > li:last-child a {
  margin-right: 0.5em;
}

.pkp_navigation_user > li:last-child > a {
  margin-right: 0;
}

.pkp_navigation_user .task_count {
  top: 0.1rem;
  background: #ff4d4d;
}

/* @media (min-width: 992px) {
} */

/* Navigation Sub Primary */
.pkp_navigation_primary ul a {
  margin-right: 0 !important;
}

#pkpDropdown3::before {
  content: "Howdy,";
}

.dropdown-menu {
  left: 0 !important;
}

.pkp_navigation_search_wrapper a {
  color: white;
}

/* Header */
.pkp_structure_head {
  background-color: transparent;
  border-bottom: none;
}


.pkp_structure_footer_wrapper{
  background: 
    radial-gradient(900px 420px at 18% 10%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #111c33, #0f172a 40%, #0b1220 100%) !important;
}


.pkp_structure_head {
  background: #9A0002;
}

.pkp_navigation_primary_row {
  background: none !important;
  background-color: none !important;
}
.pkp_navigation_primary_wrapper {
  background: none !important;
}

.pkp_nav_list {
  background: none !important;
}

.pkp_structure_content {
    background-color: whitesmoke;
}

.pkp_structure_footer_wrapper {
  background: transparent;
}

.pkp_site_name .is_img {
  margin-bottom: 0;
}

/* .php_structure_page {
    width: 80vw;
} */

/* .pkp_structure_head, .pkp_structure_content, .pkp_structure_footer {
    box-shadow: 0 0px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
} */

/* Content Homepage */
@media only screen and (max-width: 600px) {
  .hide-small {
    display: none;
  }
}

@media (min-width: 601px) {
  .show-small {
    display: none;
  }
}

/* Custom Block Tools */
#customblock-tools img {
  max-width: unset;
  width: 70%;
}

#customblock-journal-template img {
  max-width: unset;
  width: 70%;
  border-radius: 3px;
}

/* Team */
.flag-img {
  max-width: unset;
  width: 50px;
}

/* Animation */
.dropdown {
  position: relative;
}
.dropdown a {
  text-decoration: none;
}
.dropdown [data-toggle="dropdown"] {
  display: block;
  color: white;
  background: #9A0002;
  -moz-box-shadow: 0 1px 0 #0a4c5a inset, 0 -1px 0 #0a4c5a inset;
  -webkit-box-shadow: 0 1px 0 #0a4c5a inset, 0 -1px 0 #0a4c5a inset;
  box-shadow: 0 1px 0 #0a4c5a inset, 0 -1px 0 #0a4c5a inset;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  padding: 10px;
}
.dropdown [data-toggle="dropdown"]:hover {
  background: #0f6681;
}
.dropdown [data-toggle="dropdown"]:before {
  position: absolute;
  display: block;
  content: "\25BC";
  font-size: 0.7em;
  color: #fff;
  top: 13px;
  right: 10px;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.dropdown > .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -moz-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -moz-transition: max-height 0.6s ease-out;
  -o-transition: max-height 0.6s ease-out;
  -webkit-transition: max-height 0.6s ease-out;
  transition: max-height 0.6s ease-out;
  animation: hideAnimation 0.4s ease-out;
  -moz-animation: hideAnimation 0.4s ease-out;
  -webkit-animation: hideAnimation 0.4s ease-out;
}
.dropdown > .dropdown-menu li {
  padding: 0;
}
.dropdown > input[type="checkbox"] {
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.dropdown > input[type="checkbox"]:checked ~ .dropdown-menu {
  max-height: 9999px;
  display: block;
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  animation: showAnimation 0.5s ease-in-out;
  -moz-animation: showAnimation 0.5s ease-in-out;
  -webkit-animation: showAnimation 0.5s ease-in-out;
  -moz-transition: max-height 2s ease-in-out;
  -o-transition: max-height 2s ease-in-out;
  -webkit-transition: max-height 2s ease-in-out;
  transition: max-height 2s ease-in-out;
}
.dropdown > input[type="checkbox"]:checked + a[data-toggle="dropdown"]:before {
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}

@keyframes showAnimation {
  0% {
    -moz-transform: scaleY(0.1);
    -ms-transform: scaleY(0.1);
    -webkit-transform: scaleY(0.1);
    transform: scaleY(0.1);
  }
  40% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  100% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@-moz-keyframes showAnimation {
  0% {
    -moz-transform: scaleY(0.1);
    -ms-transform: scaleY(0.1);
    -webkit-transform: scaleY(0.1);
    transform: scaleY(0.1);
  }
  40% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  100% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@-webkit-keyframes showAnimation {
  0% {
    -moz-transform: scaleY(0.1);
    -ms-transform: scaleY(0.1);
    -webkit-transform: scaleY(0.1);
    transform: scaleY(0.1);
  }
  40% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  100% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes hideAnimation {
  0% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
@-moz-keyframes hideAnimation {
  0% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
@-webkit-keyframes hideAnimation {
  0% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

/* Desktop View */
@media only screen and (min-width: 992px) {
  .pkp_site_name .is_img img {
    max-height: 200px !important;
  }
  .show-on-mobile {
    display: none;
  }
}

/* Mobile View */
@media only screen and (max-width: 991px) {
  .pkp_nav_list > li > ul > li > a {
    color: white;
    margin-left: 1.5em;
  }
  .pkp_navigation_primary > li a {
    margin-left: 0.5em;
  }
  .pkp_navigation_search_wrapper, .pkp_navigation_user_wrapper {
    margin-left: 0.5em;
  }
  .pkp_nav_list > li {
    background: transparent;
  }
  .pkp_navigation_user .task_count {
    top: 0;
    background: #ff4d4d !important;
  }
}

/* Editorial Team (Custom Block) */
.editorial_team_block .profile .orcid {
    background: url('https://journal.diginus.id/public/site/images/pisces/orcid_logo.svg') no-repeat 2px;
    background-size: 15px;
    padding-left: 25px;
}

.editorial_team_block .profile .google_scholar {
    background: url('https://journal.diginus.id/public/site/images/pisces/google_scholar_logo.svg') no-repeat 2px;
    background-size: 15px;
    padding-left: 25px;
}

.editorial_team_block .profile div {
    line-height: 1.5;
    font-size: .92em;
    text-align: left;
}

.editorial_team_block div {
    padding: 0;
}

.editorial_team_block img {
    width: 85px!important;
    height: 90px!important;
    padding: 5px;
    border: 1px solid #d6cfcf46;
    float: left;
    box-shadow: 10px 10px 5px -13px rgb(105 98 98 / 75%);
}

.team td {
  vertical-align: top;
}

.dropdown-customblock {
    padding: 10px;
    border-bottom: 1px solid #aaa;
    background: #054C8B !important;
    color: #fbfcfc;
}

.dropdown-customblock-item {
    padding: 10px !important;
    border-bottom: 1px solid #aaa; 
    background: #e6e2e2; 
    color: #fbfcfc;
}

.dropdown-customblock-item a {
    color: #054C8B
}

.dropdown-customblock-item a:hover {
    color: #F4C64B;
}

