/* Gaya kustom aplikasi di atas template admin (Vuexy core). */

/* ---------- Halaman otentikasi ---------- */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bs-body-bg);
}

.auth-card {
  width: 100%;
  max-width: 430px;
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.auth-brand img {
  height: 60px;
}

/* ---------- Avatar ---------- */
.core-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  flex-shrink: 0;
}

.core-avatar-sm {
  width: 34px;
  height: 34px;
  font-size: 0.8rem;
}

.core-avatar-md {
  width: 42px;
  height: 42px;
  font-size: 0.95rem;
}

.core-avatar-lg {
  width: 96px;
  height: 96px;
  font-size: 2rem;
}

.core-avatar-initials {
  background: color-mix(in srgb, var(--bs-primary) 16%, transparent);
  color: var(--bs-primary);
  font-weight: 600;
}

/* ---------- Tabel data ---------- */
.core-table-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.core-table-toolbar .form-control,
.core-table-toolbar .form-select {
  min-width: 0;
}

#core-toasts .toast {
  min-width: 260px;
}

/* Kartu statistik dasbor */
.stat-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 1.35rem;
}

/* Timeline sederhana untuk aktivitas */
.simple-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.simple-timeline li {
  position: relative;
  padding: 0 0 1rem 1.25rem;
  border-left: 2px solid var(--bs-border-color);
  margin-left: 0.5rem;
}

.simple-timeline li:last-child {
  padding-bottom: 0;
}

.simple-timeline li::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bs-primary);
}
