/* ===== EDUTECH ABOUT JOURNAL LAYOUT ===== */

.edutech-about {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    margin-top: 20px;
}

.edutech-left img {
    width: 100%;
    border: 4px solid #2C3E50;
}

/* Header table */
.edutech-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: #2C3E50;
    color: #ffffff;
    font-weight: 800;
    padding: 10px;
}

/* Rows */
.edutech-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.edutech-row:nth-child(even) {
    background: #f5f5f5;
}

.edutech-row div:first-child {
    font-weight: 700;
    color: #111111;
}

/* Button */
.edutech-btn {
    display: inline-block;
    background: #ff2a1a;
    color: #ffffff !important;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
}

.edutech-btn:hover {
    background: #111111;
}

/* Responsive */
@media (max-width: 768px) {
    .edutech-about {
        grid-template-columns: 1fr;
    }

    .edutech-header,
    .edutech-row {
        grid-template-columns: 1fr;
    }
}

/* ===== EDUTECH SIDEBAR PANEL ===== */

.edutech-panel {
    border: 1px solid #2C3E50;
    margin-bottom: 20px;
    background: #ffffff;
}

.edutech-panel-title {
    background: #2C3E50;
    color: #ffffff;
    padding: 10px;
    font-weight: 800;
    font-size: 14px;
    margin: 0;
}

.edutech-panel-content {
    padding: 10px;
    font-size: 13px;
    color: #111111;
}

.edutech-country-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 12px 0;
}

.edutech-country-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

/* Flag icons */
.flag {
    width: 16px;
    height: 12px;
    display: inline-block;
    border: 1px solid #ccc;
}

.flag.id { background: linear-gradient(#ff0000 50%, #ffffff 50%); }
.flag.ng { background: linear-gradient(#008753 33%, #ffffff 33% 66%, #008753 66%); }
.flag.tw { background: #fe0000; }
.flag.fr { background: linear-gradient(90deg, #0055a4 33%, #ffffff 33% 66%, #ef4135 66%); }
.flag.au { background: #012169; }
.flag.ca { background: linear-gradient(90deg, #ff0000 25%, #ffffff 25% 75%, #ff0000 75%); }

.count {
    margin-left: auto;
    font-weight: 700;
}

/* ======================================================
   JOURNAL PARTICIPANT DIVERSITY (FIXED LIKE IMAGE)
   ====================================================== */

/* Sembunyikan title bawaan OJS */
.block_participantDiversity .title {
    display: none !important;
}

/* Box utama */
.block_participantDiversity {
    border: 1px solid #2C3E50;
    background: #f4f4f4;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

/* Header custom */
.block_participantDiversity::before {
    content: "Journal Participant Diversity";
    display: block;
    background: #2C3E50;
    color: #ffffff;
    padding: 12px 14px;
    font-weight: 700;
    font-size: 15px;
}

/* Reset padding bawaan */
.block_participantDiversity .content {
    padding: 0;
}

/* Section title */
.block_participantDiversity .content > p {
    margin: 0;
    padding: 10px 14px;
    font-weight: 700;
    border-bottom: 1px solid #dcdcdc;
}

/* List */
.block_participantDiversity ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Item */
.block_participantDiversity ul li {
    padding: 10px 24px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    background: #f4f4f4;
}

/* Hilangkan border terakhir tiap list */
.block_participantDiversity ul li:last-child {
    border-bottom: none;
}

/* Hover effect */
.block_participantDiversity ul li:hover {
    background: #e9e9e9;
    transition: 0.2s ease;
}

/* ======================================================
   INDEXER BOX
   ====================================================== */

.indexer-box {
  border: 1px solid #2C3E50;
  background: #fff;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.indexer-header {
  background: #2C3E50;
  color: #fff;
  font-weight: bold;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.indexer-content {
  padding: 10px;
}

.indexer-item {
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.indexer-item:last-child {
  border-bottom: none;
}

.indexer-item img {
  max-width: 160px;
  max-height: 50px;
  object-fit: contain;
}

/* ======================================================
   QUICK MENU
   ====================================================== */

.edutech-quickmenu {
  border: 1px solid #2C3E50;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

.quickmenu-header {
  background: #2C3E50;
  color: #fff;
  padding: 12px 14px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quickmenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quickmenu-list li {
  border-bottom: 1px solid #eee;
}

.quickmenu-list li:last-child {
  border-bottom: none;
}

.quickmenu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #0b5ed7;
  font-size: 14px;
  text-decoration: none;
  transition: all .25s ease;
}

.quickmenu-list a:hover {
  background: #f4f4f4;
  padding-left: 18px;
  color: #2C3E50;
}

/* ======================================================
   FORCE LINK COLOR
   ====================================================== */

.pkp_block.block_custom ul li a,
.pkp_block.block_navigation ul li a {
    color: #000000 !important;
}