.admin a,
.ep_toolbox a,
.ep_action_list a {
  pointer-events: auto !important;
  display: inline-block !important;
  opacity: 1 !important;
}


/* Background halaman */
body {
  background: url("/apw_newtheme/images/bg.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: "Poppins", sans-serif;
  color: #333;
}

body#index .ep_tm_pagetitle {
  display: none;
}


/* Header / Navbar */
#header {
  background-color: rgba(255,255,255,0.85); /* putih semi-transparan, lebih solid */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
#header a {
  color: #2c3e50;              /* teks lebih gelap agar kontras */
  font-weight: 500;
}
#header a:hover {
  color: #3498db;              /* efek hover biru */
}

/* Tombol utama */
.btn-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.adv-search a {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: #3498db;
  position: relative;
  font-weight: 600;
  text-decoration: none;
}
.adv-search a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #3498db;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.adv-search a:hover::after {
  transform: scaleX(1);
}

/* Home Welcome */
.home-welcome {
  text-align: center;
  margin: 2em 0;
}
.home-welcome h2 {
  font-size: 2em;
  font-weight: 600;
  color: #2c3e50;
}
.home-welcome p {
  font-size: 1.1em;
  color: #555;
}

/* Home Grid */
.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 2em;
}

/* Welcome message */
.welcome-message {
  background: rgba(52,152,219,0.1); /* biru transparan ringan */
  border: 1px solid rgba(52,152,219,0.2);
  border-radius: 8px;
  padding: 20px;
  margin: 1.5em 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.welcome-message i {
  font-size: 28px;
  color: #3498db;
  margin-bottom: 8px;
}

.welcome-message h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5em;
}

.welcome-message p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Responsif untuk mobile */
@media (max-width: 768px) {
  .welcome-message {
    padding: 15px;          /* lebih kecil */
    margin: 1em 0;          /* rapat */
  }
  .welcome-message i {
    font-size: 22px;        /* icon lebih kecil */
  }
  .welcome-message h3 {
    font-size: 1.2em;       /* judul lebih kecil */
  }
  .welcome-message p {
    font-size: 0.85em;      /* teks lebih kecil */
    line-height: 1.4;
  }
}



/* Grid layout untuk toolbox */
.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 2em;
}

/* Card style */
.home-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,245,245,0.9));
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.home-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #3498db, #e48601);
  border-radius: 14px 14px 0 0;
}
.home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

/* Icon style */
.home-card i {
  font-size: 38px;
  color: #3498db;
  margin-bottom: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.home-card:hover i {
  transform: scale(1.15) rotate(5deg);
  color: #e48601;
}

/* Link style */
.home-grid .home-card .ep_toolbox_content a {
  /* hanya berlaku di home-grid */
  font-weight: 600;
  color: #3498db;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.home-card .ep_toolbox_content a:hover {
  color: #1f6391;
  text-decoration: underline;
}

/* Text style */
.home-card .ep_toolbox_content {
  font-size: 0.95em;
  color: #444;
  margin-top: 0.5em;
  line-height: 1.5;
}

/* Responsiveness */
@media (max-width: 768px) {
  .home-card {
    padding: 18px;
  }
  .home-card i {
    font-size: 30px;
  }
  .home-card .ep_toolbox_content {
    font-size: 0.85em;
  }
}


/* OAI info */
.oai-info {
  margin-top: 2em;
  font-size: 0.9em;
  color: #666;
  text-align: center;
}

/* Stats Card */
.stats-card {
  background: rgba(255,255,255,1.8);   /* transparan ringan */
  border: 1px solid #ddd;              /* garis tipis */
  border-radius: 6px;                  /* sudut halus */
  padding: 8px 12px;                   /* kecil */
  font-size: 0.75em;                   /* teks kecil */
  box-shadow: 0 1px 4px rgba(0,0,0,0.08); /* bayangan tipis */
  max-width: 240px;                    /* ramping */
  margin: 1em 0 1em auto;              /* dorong ke kanan bawah flow */
  text-align: right;                   /* konten rata kanan */
}

.stats-link {
  display: inline-flex;                /* icon + teks sejajar */
  align-items: center;
}

.stats-link i {
  font-size: 14px;                     /* icon kecil */
  color: #3498db;
  margin-right: 5px;
}

.stats-link a {
  font-weight: 500;
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.stats-link a:hover {
  color: #1f6391;
  text-decoration: underline;
}






/* Kotak konten */
.box {
  background: rgba(255,255,255,0.95); /* putih hampir solid agar teks jelas di atas bg */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
}

.login-admin {
  text-align: right;
  margin-top: 10px;
}
.login-admin a {
  color: #1abc9c;
  font-size: 0.9em;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px;
}
.login-admin a i {
  margin-right: 4px;
  color: #1abc9c;
}
.login-admin a:hover {
  color: #3498db;
}
.login-admin a:hover i {
  color: #3498db;
}


.indexing-info {
  background: linear-gradient(135deg, rgba(31,31,31,0.9), rgba(44,44,44,0.9));
  color: #fff;
  border-top: 1px solid #444;
  padding: 3px;
}

.indexing-title {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 1rem;
}

.indexing-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;

  margin-bottom: 30px; 
}

.indexing-logos img {
  height: 40px;
  width: auto;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.indexing-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}



/* Footer */
  #footer {
    background-color: rgba(44,62,80,0.9); /* gelap transparan */
    color: #f0f0f0;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9em;
    border-top: 1px solid rgba(255,255,255,0.2);
    line-height: 1.6;
  }

  /* Link di footer */
  #footer a {
    color: #1abc9c;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  #footer a:hover {
    color: #3498db;
  }

  /* Konten footer */
  #footer .footer-content {
    max-width: 960px;
    margin: 0 auto;
  }

  /* Paragraf di footer */
  #footer .footer-content p {
    margin: 0.5em 0;
  }

  /* Code block di footer */
  #footer code {
    background-color: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #f0f0f0;
  }

  /* Copyright list */
  #footer ul.copyright {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  #footer ul.copyright li {
    margin: 0.5em 0;
  }

  /* Animasi masuk (fade-in) */
  #footer {
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeIn 0.8s ease forwards;
  }
  @keyframes footerFadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.ep_tm_pagetitle {
  font-size: 1.4em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1em;
  text-align: center;
}


