:root {
  --primary-color: #009bad; /* Turquoise Gelap */
  --primary-dark: #007c8c; /* Versi lebih gelap */
  --accent-color: #d2dc00; /* Hijau Kuning */
  --secondary-color: #60cdd0; /* Turquoise Medium */
  --text-dark: #686969; /* Abu */
  --bg-light: #f4fdfd;
  --white: #ffffff;
  --border-radius: 12px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
body,
input,
button,
select,
textarea {
  font-family: "Poppins", sans-serif;
}
body {
  background-color: var(--bg-light);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* --- NAVBAR --- */
.navbar {
  padding: 6px 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}
.navbar .container {
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 65px; /* tinggi logo */
  width: auto; /* proporsional */
  object-fit: contain;
}
.nav-links a {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
} /* Hover modern */
.nav-links a:hover {
  color: var(--primary-color) !important;
} /* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
} /* --- DROPDOWN --- */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 180px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  pointer-events: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  font-size: 0.9rem;
}
.dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
} /* --- MENU LOGIN/KANAN --- */
.nav-auth {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.self-upload {
  padding: 7px 16px;
  border-radius: 50px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.self-upload:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.ep_login_link {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none !important;
} /* USER MENU AFTER LOGIN */
.user-menu-container {
  background-color: #f8f8f8;
  text-align: center;
  clear: both;
}
.user-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 6px 0;
  gap: 12px;
}
.user-menu li a {
  text-decoration: none;
  padding: 6px 14px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s ease;
}
.user-menu li a:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
}
.user-menu-container .logged-in {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: #333;
  margin: 0;
} /* --- HERO --- */
.hero {
  background: linear-gradient(135deg, #009bad 0%, #60cdd0 70%, #d2dc00 100%);
  color: var(--white);
  padding: 5px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
.hero-text p {
  font-size: 1rem;
  margin-top: 10px;
  max-width: 500px;
}
/* HARD RESET SEARCH FORM */
.search-card * {
  box-sizing: border-box;
}
.search-card {
  background: #ffffff !important; /* balikin putih */
  max-width: 500px !important;
  width: 100%;
  padding: 35px !important;
  margin-left: auto;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.search-card h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
}
/* GRID FIX TOTAL */
.search-card .form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* penting supaya tidak overflow */
}

/* RATA SEMUA INPUT */
.search-card .form-control {
  flex: 1;
  height: 55px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #f9f9f9;
  transition: 0.3s ease;
  margin: 0 !important;
} /* Lebar proporsional */
.search-card .form-control:nth-child(1) {
  flex: 2;
}
.search-card .form-control:nth-child(2) {
  flex: 1.5;
}
.search-card .form-control:nth-child(3) {
  flex: 1;
} /* Focus */
.search-card .form-control:focus {
  background: #fff;
  border-color: #009bad;
  box-shadow: 0 0 0 3px rgba(0, 155, 173, 0.15);
  outline: none;
} /* BUTTON */
.search-card .btn-search {
  width: 100%;
  height: 55px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
} /* ADVANCED */
.search-card .btn-advanced {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  text-decoration: none;
  color: #777;
} /* MOBILE FIX */
@media (max-width: 768px) {
  .search-card .form-row {
    flex-direction: column;
  }
}
.browse-section .container {
  max-width: 1200px;
}
.browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.browse-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
.browse-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.browse-icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.browse-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.browse-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.browse-link {
  text-decoration: none;
  color: #0f8b8d;
  font-weight: 600;
  transition: 0.3s;
}
.browse-link:hover {
  color: #d2dc00;
}
.latest-collection-section {
  padding: 60px 20px;
  background: #f4f7f8;
  text-align: center;
}
.latest-collection-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}
.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}
.latest-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  width: 100%;
  max-width: 300px;
}
.latest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.latest-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.latest-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}
.latest-card a {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-color);
}
.latest-card a:hover {
  color: var(--accent-color);
} /* --- INFO CARDS SECTION (SCREENSHOT STYLE) --- */
.info-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f4fbfc 0%, #e6f7f8 100%);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.info-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.35s ease;
  border-top: 4px solid var(--primary-color);
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}
.info-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s;
}
.info-card:hover .info-icon {
  transform: scale(1.1);
}
.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}
.info-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.info-btn,
.btn-search {
  background: #009bad !important;
  color: #fff !important;
  border: none;
}
.info-btn:hover,
.btn-search:hover {
  background: #007c8c !important;
} /* ===== STATS PREMIUM ===== */
.stats-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f4fdfd, #e6f8f8);
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.stat-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 155, 173, 0.08);
  transition: 0.4s ease;
  border: 1px solid rgba(0, 155, 173, 0.1);
}
.stat-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 155, 173, 0.2);
}
.stat-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.stat-box h2 {
  font-size: 2.5rem;
  color: #009bad;
  margin-bottom: 10px;
}
.stat-box p {
  color: #555;
  font-weight: 500;
} /* Floating shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 155, 173, 0.08);
  animation: float 8s infinite ease-in-out;
}
.shape1 {
  width: 250px;
  height: 250px;
  top: -50px;
  left: -80px;
}
.shape2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -60px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
.counter {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.counter.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.counter-glow {
  text-shadow:
    0 0 10px rgba(0, 123, 255, 0.6),
    0 0 20px rgba(0, 123, 255, 0.4);
}
/* BERSIHKAN HANYA HOMEPAGE */ /* Hanya berlaku di homepage */
body.home .ep_tm_header,
body.home .ep_tm_footer {
  display: none !important;
}
body.home .ep_tm_main h1,
body.home .ep_tm_main h2.page-header,
body.home .ep_main_content > h1,
body.home .ep_main_content > h2,
body.home .ep_main_content > .ep_view_page_header {
  display: none !important;
}
body.home .ep_main_content > form[action*="search"],
body.home .ep_main_content > .ep_search_main,
body.home .ep_main_content > .ep_search_box,
body.home .ep_tm_search {
  display: none !important;
}
/* BROWSE LIST */
.ep_view_page h2 {
  color: var(--primary-color) !important;
  font-size: 2rem !important;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  display: block !important;
  text-align: center;
  margin-bottom: 40px;
}
.ep_view_page_list ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
}
.ep_view_page_list ul li {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}
.ep_view_page_list ul li:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}
.ep_view_page_list ul li a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
}
/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0f8b8d, #0c6c6e);
  color: #ffffff;
  padding: 45px 0 20px; /* sebelumnya 70px 0 40px */
}
/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: border-box;
} /* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px; /* sebelumnya 60px */
}
/* LOGO */
.footer-logo img {
  width: 300px; /* sebelumnya 230px */
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
} /* TITLE */
.footer h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
}
.footer h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #d2dc00;
  display: block;
  margin-top: 6px;
  border-radius: 3px;
} /* LIST */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 12px;
} /* LINKS */
.footer a {
  color: #e0f7f7;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer a:hover {
  color: #d2dc00;
  transform: translateX(6px);
}
.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-links ul li {
  display: flex;
  align-items: center; /* ✔ rata tengah */
  gap: 10px;
} /* ICON */
.footer i {
  width: 18px; /* biar semua icon sejajar */
  text-align: center;
  margin-right: 6px;
  margin-top: 0; /* kalau ada margin-top sebelumnya, hapus */
  color: #d2dc00;
  transition: 0.3s;
}
.footer a:hover i {
  transform: scale(1.2);
} /* SOCIAL ICONS */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  transition: 0.3s ease;
}
.social-icons a:hover {
  color: #d2dc00;
  transform: translateY(-4px);
  box-shadow: 0 0 15px #d2dc00;
} /* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px 0; /* sebelumnya 40px */
} /* COPYRIGHT */
.copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
} /* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    margin: 0 auto 20px;
  }
}
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
} /* Responsive */
@media (max-width: 768px) {
  .wa-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}
/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #fff !important;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  animation: waPulse 2s infinite;
}
.wa-float:hover {
  transform: translateY(-6px) scale(1.08);
}
/* NAVBAR FLEX FIX */
.nav-content {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  flex: 1;
}

.nav-auth {
  min-width: 120px;
  justify-content: flex-end;
}
/* HAMBURGER DEFAULT HIDDEN */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}
/* ============================= */
/* MOBILE RESPONSIVE START */
/* ============================= */

@media (max-width: 992px) {
  /* HERO STACK */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .search-card {
    margin: 40px auto 0;
  }

  /* INFO GRID */
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* STATS */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* BROWSE */
  .browse-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  /* NAVBAR MOBILE */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  /* HERO TEXT */
  .hero {
    padding: 70px 0;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  /* GRID 1 COLUMN */
  .info-grid,
  .stats-grid,
  .browse-grid {
    grid-template-columns: 1fr;
  }

  /* SEARCH FORM STACK */
  .search-card .form-row {
    flex-direction: column;
  }
}
img {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}
/* ============================= */
/* MOBILE NAV AUTH FIX */
/* ============================= */

@media (max-width: 768px) {
  /* Sembunyikan nav-auth default */
  .nav-auth {
    display: none !important;
  }

  /* Buat login ikut di dalam menu */
  .nav-links .ep_login_link,
  .nav-links .ep_register_link,
  .nav-links .ep_admin_link {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}
/* Hanya untuk layar ≤768px (mobile/tablet kecil) */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* sembunyi default di mobile */
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute; /* muncul overlay di bawah navbar */
    top: 100%; /* tepat di bawah navbar */
    left: 0;
    z-index: 9999;
  }

  .nav-links.active {
    display: flex;
  }

  /* Hamburger muncul di mobile saja */
  .hamburger {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }
}

/* Desktop: pastikan nav-links tampil normal */
@media (min-width: 769px) {
  .nav-links {
    display: flex !important; /* selalu tampil di desktop */
    flex-direction: row;
    position: relative;
    background: none;
    top: auto;
    left: auto;
    width: auto;
  }

  .hamburger {
    display: none; /* sembunyikan hamburger di desktop */
  }
}
/* ===== Stats Section Container ===== */
.stats-section {
  background: linear-gradient(135deg, #f0f4ff, #dfe9ff);
  padding: 40px 0;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section Title */
.stats-section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #1a237e;
  border-bottom: 3px solid #536dfe;
  display: inline-block;
  padding-bottom: 5px;
}

/* Table */
.irstats2_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px; /* Spacing between rows */
  margin-bottom: 30px;
}

.irstats2_table tr {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.irstats2_table td {
  padding: 12px 15px;
  vertical-align: middle;
}

/* Order number */
.irstats2_table_cell_order {
  width: 40px;
  font-weight: bold;
  color: #536dfe;
  font-size: 1.1em;
}

/* Eprint title link */
.irstats2_table_cell_object a {
  color: #1a237e;
  text-decoration: none;
  font-weight: 500;
}

.irstats2_table_cell_object a:hover {
  text-decoration: underline;
}

/* Progress bar wrapper */
.irstats2_progress_wrapper {
  background: rgba(83, 109, 254, 0.2);
  border-radius: 12px;
  overflow: hidden;
  width: 120px;
  height: 20px;
}

/* Progress bar */
.irstats2_progress {
  background-color: #536dfe;
  height: 100%;
  text-align: right;
  padding-right: 6px;
  color: #ffffff;
  font-weight: bold;
  line-height: 20px;
  border-radius: 12px 0 0 12px;
  transition: width 0.6s ease;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .irstats2_table_cell_object a {
    font-size: 0.95em;
  }
  .irstats2_progress_wrapper {
    width: 100px;
    height: 18px;
  }
}
/* ===== STATISTIK HOMEPAGE ===== */

.stats-section {
  padding: 60px 0;
}

/* background card */
.stats-card {
  background: #ffffff !important;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* judul statistik */
.stats-card h3 {
  color: #007c8c !important;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 3px solid #d2dc00;
  display: inline-block;
  padding-bottom: 6px;
}

/* link judul item */
.stats-card a {
  color: #444 !important;
  text-decoration: none;
  font-weight: 500;
}

.stats-card a:hover {
  color: #009bad !important;
}

/* bar angka download */
.ep_stats_bar {
  background: #009bad !important;
  border-radius: 20px;
}

/* angka download */
.ep_stats_count {
  color: #007c8c !important;
  font-weight: 600;
}

/* garis antar item */
.stats-card tr {
  border-bottom: 1px solid #e6ecef;
}
/* ===== SAMAKAN STYLE STATISTIK DENGAN BROWSE CARD ===== */

#top-downloads,
#topp-downloads {
  margin-top: 15px;
}

/* judul statistik */
.stats-card h3 {
  color: #333 !important;
  font-weight: 600;
}

/* link judul item */
#top-downloads a,
#topp-downloads a {
  color: #009bad !important;
  text-decoration: none;
  font-weight: 500;
}

#top-downloads a:hover,
#topp-downloads a:hover {
  color: #007c8c !important;
}

/* nomor ranking */
#top-downloads td:first-child,
#topp-downloads td:first-child {
  color: #666 !important;
}

/* background bar kanan */
.ep_stats_bar {
  background: #e8f6f7 !important;
  border: 1px solid #009bad !important;
}

/* angka download */
.ep_stats_count {
  color: #009bad !important;
  font-weight: 600;
}

/* garis antar item */
#top-downloads tr,
#topp-downloads tr {
  border-bottom: 1px solid #e6ecef;
}
