body {
  background: var(--bg-2, #f5f6fa);
  background-image: none !important;
}

/* ===== MODERN CARDS WITH ICONS ===== */
.card {
  border-radius: 1.2rem !important;
  border: none !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  background: linear-gradient(90deg, #6366f1 0%, #2563eb 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12) !important;
}

.card:hover::before {
  opacity: 1 !important;
}

.card-header {
  position: relative !important;
  padding: 1.25rem 1.5rem !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05) !important;
}

.card-header::before {
  content: '\25B8' !important; /* Unicode: ? */
  position: absolute !important;
  left: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #6366f1 !important;
  font-size: 1.2rem !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
}

.card:hover .card-header::before {
  opacity: 1 !important;
  left: 0.75rem !important;
}

.card .form-label {
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.card .form-label::before {
  content: '\26A1' !important; /* Unicode: ? */
  font-size: 0.9rem !important;
}

/* ===== SIMPLE MODERN BUTTONS ===== */
.btn-primary {
  background: #667eea !important;
  border: none !important;
  color: white !important;
  font-weight: 500 !important;
  transition: opacity 0.2s ease !important;
}

.btn-primary:hover {
  background: #5568d3 !important;
  color: white !important;
}

.btn-success {
  background: #10b981 !important;
  border: none !important;
  color: white !important;
  font-weight: 500 !important;
  transition: opacity 0.2s ease !important;
}

.btn-success:hover {
  background: #059669 !important;
  color: white !important;
}

.btn-danger {
  background: #ef4444 !important;
  border: none !important;
  color: white !important;
  font-weight: 500 !important;
  transition: opacity 0.2s ease !important;
}

.btn-danger:hover {
  background: #dc2626 !important;
  color: white !important;
}

.btn-warning {
  background: #f59e0b !important;
  border: none !important;
  color: white !important;
  font-weight: 500 !important;
  transition: opacity 0.2s ease !important;
}

.btn-warning:hover {
  background: #d97706 !important;
  color: white !important;
}

.btn-info {
  background: #06b6d4 !important;
  border: none !important;
  color: white !important;
  font-weight: 500 !important;
  transition: opacity 0.2s ease !important;
}

.btn-info:hover {
  background: #0891b2 !important;
  color: white !important;
}

.btn-secondary {
  background: #64748b !important;
  border: none !important;
  color: white !important;
  font-weight: 500 !important;
  transition: opacity 0.2s ease !important;
}

.btn-secondary:hover {
  background: #475569 !important;
  color: white !important;
}

/* Logo styling - Override untuk logo di navbar/sidebar */
.mobile-navbar img[alt="Logo"],
.mobile-navbar a img[alt="Logo"],
.sidebar img[alt="Logo"],
.sidebar-header img[alt="Logo"] {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
}

/* Logo styling untuk tempat lain (bukan navbar/sidebar) */
img[alt="Logo"]:not(.mobile-navbar img):not(.sidebar img):not(.sidebar-header img) {
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  padding: 8px !important;
}

/* CSS untuk SVG logo di navbar/sidebar */
.mobile-navbar img[alt="Logo"][src$=".svg"],
.mobile-navbar a img[alt="Logo"][src$=".svg"],
.sidebar img[alt="Logo"][src$=".svg"],
.sidebar-header img[alt="Logo"][src$=".svg"] {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
}

/* CSS untuk SVG logo di tempat lain */
img[alt="Logo"][src$=".svg"]:not(.mobile-navbar img):not(.sidebar img):not(.sidebar-header img) {
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  padding: 8px !important;
  width: auto !important;
  height: auto !important;
  max-width: 120px !important;
  max-height: 60px !important;
}
