/* ============================================================
   审计报告管理系统 — 后台换肤
   主色调：原「天蓝→蓝」(sky-400 → blue-500) 改为「靛蓝→紫罗兰」(indigo → violet)
   作用范围：后台各页（登录/列表/表单/管理员/用户）+ 共享导航栏
   不影响：报告详情页 #/report/:id（其样式由 custom.css 以 code-path+!important 锁定）
   做法：覆盖 Tailwind 工具类，纯 CSS、不动源码、删此文件即回滚
   ============================================================ */

/* —— 主 CTA 渐变（登录提交、Logo、头像、「新增报告」按钮）—— */
.from-sky-400 {
  --tw-gradient-from: #6366f1 var(--tw-gradient-from-position) !important;        /* indigo-500 */
  --tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}
.to-blue-500 {
  --tw-gradient-to: #8b5cf6 var(--tw-gradient-to-position) !important;            /* violet-500 */
}
/* hover 加深 */
.hover\:from-sky-500:hover {
  --tw-gradient-from: #4f46e5 var(--tw-gradient-from-position) !important;        /* indigo-600 */
  --tw-gradient-to: rgb(79 70 229 / 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}
.hover\:to-blue-600:hover {
  --tw-gradient-to: #7c3aed var(--tw-gradient-to-position) !important;            /* violet-600 */
}

/* —— 圆形头像/Logo 的 br 渐变方向也用同色 —— */
.from-sky-400.to-blue-500 {
  --tw-gradient-from: #6366f1 var(--tw-gradient-from-position) !important;
  --tw-gradient-to: #8b5cf6 var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

/* —— 导航选中态 / 强调背景 —— */
.bg-blue-50 { background-color: #eef2ff !important; }   /* indigo-50 */
.text-blue-600 { color: #4f46e5 !important; }            /* indigo-600 */
.text-blue-500 { color: #6366f1 !important; }            /* indigo-500 */

/* —— 焦点 / 边框（搜索框、输入框）—— */
.border-blue-500 { border-color: #6366f1 !important; }
.focus\:border-blue-500:focus { border-color: #6366f1 !important; }
.focus\:ring-blue-500\/20:focus { --tw-ring-color: rgb(99 102 241 / 0.2) !important; }
.focus\:ring-blue-500:focus { --tw-ring-color: #6366f1 !important; }

/* —— 登录页背景叠加层（原 blue-900/800）调成靛蓝系，整体更统一 —— */
.from-blue-900\/30 { --tw-gradient-from: rgb(49 46 129 / 0.30) var(--tw-gradient-from-position) !important; } /* indigo-900 */
.to-blue-800\/50 { --tw-gradient-to: rgb(67 56 202 / 0.50) var(--tw-gradient-to-position) !important; }       /* indigo-700 */
