/* static/css/style.css */

/* Menggunakan font Inter sebagai default */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #0f172a; /* bg-slate-900 */
  color: #f8fafc; /* text-slate-50 */
}
/* Style untuk link navbar aktif */
.nav-link.active {
  color: #22d3ee; /* text-cyan-400 */
  border-bottom-width: 2px;
  border-color: #22d3ee; /* border-cyan-400 */
}
/* Efek hover kustom untuk card fitur */
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.2),
    0 4px 6px -2px rgba(6, 182, 212, 0.1);
}

/* Margin untuk target scroll */
#advanced-search-section {
  scroll-margin-top: 8rem;
}

/* Progress bar */
#progress-bar {
  transition: width 0.4s ease-in-out;
}
#progress-text {
  text-align: center;
}

/* Style untuk tombol download saat disabled */
#download-txt:disabled,
#download-csv:disabled {
  cursor: not-allowed;
}

/* Style untuk tombol reset baru */
#reset-audit-button:hover {
  background-color: #64748b; /* bg-slate-500 */
}
