:root {
  --text-primary: #ffffff;
  --text-secondary: #bbbbbb;
  --highlight: #00bfff;
  --border-radius: 10px;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #0a0c10, #12151c, #0a0c10);
  color: var(--text-primary);
  display: flex; /* untuk dashboard, override di login.css */
}

/* === Input Umum === */
.input-text {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  width: 200px;
  background-color: #1d1f25;
  color: white;
  font-family: 'Poppins', sans-serif;
}

/* === Input Pencarian === */
.search-input {
  padding: 8px 12px;
  border-radius: var(--border-radius);
  border: none;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  width: 220px;
  font-size: 0.9rem;
  transition: 0.3s ease;
  margin-right: 12px;
}

.search-input::placeholder {
  color: var(--text-secondary);
}

.search-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px var(--highlight);
}

/* === Subtitle dan Action === */
.page-description {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.top-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.full-btn {
  width: 100%;
}
