/* theme-light-sapphire.css — Premium Sapphire Blue Style (Tailwind v4 Clean Light Edition) */

:root {
  --theme-bg: #f9fafb;
  --theme-card: #ffffff;
  --theme-card-rgb: 255, 255, 255;
  --theme-border: rgba(0, 0, 0, 0.08);
  --theme-card-hover-border: #3b82f6;
  --theme-text: #1f2937;
  --theme-text-muted: #6b7280;
  --theme-primary: #3b82f6;
  --theme-primary-rgb: 59, 130, 246;
  --theme-secondary: #1e3a8a;
  --theme-secondary-rgb: 30, 58, 138;
  --theme-primary-hover: #2563eb;
  --theme-glow: rgba(59, 130, 246, 0.15);
  --theme-gradient: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  --theme-glass-blur: 16px;
  --theme-sidebar-bg: #f3f4f6;
  --theme-input-bg: #ffffff;
}

body {
  font-family: 'Outfit', sans-serif !important;
  background-color: var(--theme-bg) !important;
  background-image: 
    radial-gradient(rgba(0, 0, 0, 0.02) 1.5px, transparent 1.5px) !important;
  background-size: 20px 20px !important;
  background-attachment: fixed !important;
  color: var(--theme-text) !important;
}

/* public navigation header */
.theme-light-sapphire .public-header {
  background-color: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #111827 !important;
}

.theme-light-sapphire .public-header .brand-text {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #111827 !important;
}

.theme-light-sapphire .public-header .logo-box {
  background: var(--theme-primary) !important;
  border-radius: 0.5rem !important;
  color: #ffffff !important;
}

.theme-light-sapphire .public-header .logo-icon {
  color: #ffffff !important;
}

.theme-light-sapphire .public-header .nav-link {
  color: #4b5563 !important;
}

.theme-light-sapphire .public-header .nav-link:hover {
  color: var(--theme-primary) !important;
  background-color: rgba(59, 130, 246, 0.06) !important;
}

/* rounded and sleek forms, panels, cards */
.manga-card, .crud-card, .stat-card, .manga-synopsis-card, .admin-mangas-section {
  border-radius: 1rem !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background-color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02) !important;
}

.manga-card:hover, .stat-card:hover {
  border-color: var(--theme-primary) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.1) !important;
}

.btn {
  border-radius: 0.75rem !important;
}

.btn-primary {
  background: var(--theme-primary) !important;
  color: #ffffff !important;
  border: none !important;
}

.btn-primary:hover {
  background: var(--theme-primary-hover) !important;
}

.form-input, .form-select, .form-textarea {
  border-radius: 0.5rem !important;
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: #111827 !important;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--theme-primary) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12) !important;
}

.badge {
  border-radius: 9999px !important;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  background-color: rgba(59, 130, 246, 0.08) !important;
  color: var(--theme-primary) !important;
}

.badge:hover {
  background-color: var(--theme-primary) !important;
  color: #ffffff !important;
}
