/* =====================================================
   VISION UI — BLUE GLASS UV RAYS THEME
   Tema: UV-Blue Glassmorphism Premium
   ===================================================== */

/* --- IMPORT FONT --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- CSS VARIABLES (Blue Glass Light Theme) --- */
:root {
  /* Background Layers — Light Blue Glass */
  --bg-base: #f0f7ff;
  --bg-surface: #e8f2ff;
  --bg-elevated: #e0ecff;
  --bg-card: #d9e8ff;

  /* Blue Glass Brand Colors */
  --blue-primary: #0066ff;
  --blue-bright: #1a7fff;
  --blue-electric: #3399ff;
  --blue-glow: rgba(0, 102, 255, 0.4);
  --cyan-primary: #00b4d8;
  --cyan-glow: rgba(0, 180, 216, 0.3);
  --uv-purple: #5a4fcf;
  --uv-violet: #6b63b5;
  --uv-glow: rgba(90, 79, 207, 0.3);
  --neon-blue: #0099ff;
  --ice-blue: #4db8ff;

  /* Text */
  --text-base: #0a2463;
  --text-muted: #1a4d8f;
  --text-faint: #0066ff;
  --text-accent: #0080ff;

  /* Glass Light */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(0, 102, 255, 0.25);
  --glass-shadow: 0 4px 30px rgba(0, 102, 255, 0.12);
  --glass-blur: 18px;
  --glass-tint: rgba(0, 102, 255, 0.05);

  /* Sidebar */
  --sidebar-bg: rgba(255, 255, 255, 0.8);
  --sidebar-w: 272px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-normal: 250ms;
  --dur-slow: 400ms;
}

/* ===================================================
   RESET & BASE
   =================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-base) !important;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-base) !important;
  background: var(--bg-base) !important;
  color: var(--text-base) !important;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Light Blue Glass Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 5% -5%, rgba(0, 102, 255, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(0, 180, 216, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(90, 79, 207, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(240, 247, 255, 0.98) 0%, var(--bg-base) 100%);
  z-index: -1;
  pointer-events: none;
}

/* Subtle Light Scanline Effect */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(0, 102, 255, 0.008) 3px,
      rgba(0, 102, 255, 0.008) 4px);
  z-index: -1;
  pointer-events: none;
}

/* ===================================================
   SCROLLBAR
   =================================================== */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 102, 255, 0.08);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 102, 255, 0.35);
  border-radius: 99px;
  transition: background var(--dur-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 102, 255, 0.6);
}

/* ===================================================
   GLASSMORPHISM — LIGHT BLUE GLASS PROFESSIONAL
   =================================================== */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 250, 255, 0.68) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(0, 102, 255, 0.18);
  box-shadow:
    0 8px 32px rgba(0, 102, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 102, 255, 0.05);
  transition:
    border-color var(--dur-normal) var(--ease),
    box-shadow var(--dur-normal) var(--ease),
    transform var(--dur-normal) var(--ease),
    background var(--dur-normal) var(--ease);
  border-radius: 16px;
}

.glass-card:hover {
  border-color: rgba(0, 102, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(248, 250, 255, 0.74) 100%);
  box-shadow:
    0 12px 40px rgba(0, 102, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 102, 255, 0.08);
  transform: translateY(-2px);
}

/* Glow variant — Electric Blue */
.glass-card-blue {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 180, 216, 0.04) 100%);
  border: 1.5px solid rgba(0, 102, 255, 0.22);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-nav {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 250, 255, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(0, 102, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ===================================================
   SIDEBAR — PROFESSIONAL LIGHT BLUE GLASS PANEL
   =================================================== */
#sidebar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 250, 255, 0.85) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1.5px solid rgba(0, 102, 255, 0.12);
  box-shadow: 2px 0 24px rgba(0, 102, 255, 0.08),
    inset -1px 0 0 rgba(255, 255, 255, 0.9);
}

#sidebar .glass-card {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

/* Sidebar nav links */
#sidebar nav a {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all var(--dur-normal) var(--ease);
  margin: 0.5rem 0;
  padding: 0.75rem 1rem !important;
}

#sidebar nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 102, 255, 0.1) 0%,
      rgba(0, 180, 216, 0.04) 60%,
      transparent 100%);
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease);
}

#sidebar nav a:hover::before {
  opacity: 1;
}

/* Active sidebar item */
#sidebar nav a.bg-\[#1a1f37\] {
  background: linear-gradient(135deg,
      rgba(0, 102, 255, 0.15) 0%,
      rgba(0, 180, 216, 0.06) 100%) !important;
  border: 1.5px solid rgba(0, 102, 255, 0.25) !important;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  color: #0066ff !important;
  font-weight: 600;
}

#sidebar .border-b {
  border-color: rgba(0, 102, 255, 0.1) !important;
}

#sidebar .text-gray-500.uppercase {
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  color: rgba(0, 102, 255, 0.5) !important;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* Page heading breadcrumb */
header nav.text-sm {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(0, 102, 255, 0.5) !important;
}

header nav.text-sm span {
  color: var(--text-muted) !important;
  font-weight: 600;
}

header h1 {
  background: linear-gradient(135deg, #0066ff 0%, #0099ff 50%, #5a4fcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3.border-l-4 {
  padding-left: 1rem !important;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--text-base) !important;
}

/* ===================================================
   FORM ELEMENTS
   =================================================== */
input,
textarea,
select {
  font-family: inherit;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="file"],
textarea,
select {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(0, 102, 255, 0.2) !important;
  border-radius: var(--radius-md) !important;
  color: var(--text-base) !important;
  font-size: 0.875rem;
  transition:
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease);
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  border-color: rgba(0, 102, 255, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12), 0 0 15px rgba(0, 102, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  outline: none !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(0, 102, 255, 0.4) !important;
  opacity: 1;
}

/* Select arrow — blue tinted */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 40px !important;
}

label.block.text-gray-400 {
  font-size: 0.7rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 102, 255, 0.6) !important;
  font-weight: 700;
}

input[type="file"] {
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  background: rgba(0, 102, 255, 0.8);
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 12px;
  padding: 6px 14px;
  transition: background var(--dur-fast);
}

input[type="file"]::file-selector-button:hover {
  background: var(--blue-bright);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

/* ===================================================
   BUTTONS — UV GLOW
   =================================================== */
button,
a.bg-blue-600,
a.bg-green-600,
a.bg-red-600 {
  transition: all var(--dur-normal) var(--ease);
}

button[type="submit"],
button.bg-blue-600 {
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md) !important;
}

button[type="submit"]::after,
button.bg-blue-600::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(186, 230, 253, 0.18) 0%, transparent 100%);
  pointer-events: none;
}

button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4), 0 0 15px rgba(0, 180, 216, 0.15) !important;
}

button[type="submit"]:active {
  transform: translateY(0);
}

/* ===================================================
   STAT CARDS (Dashboard) — PROFESSIONAL BLUE GLASS
   =================================================== */
.glass-card.border-b-4 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(248, 250, 255, 0.7) 100%);
}

.glass-card.border-b-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.2) 50%, transparent 100%);
}

.glass-card.border-b-4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, currentColor 50%, transparent 100%);
  opacity: 0.8;
}

.glass-card.border-b-4.border-blue-500 {
  border-bottom: 4px solid #0066ff;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-card.border-b-4.border-blue-500::after {
  background: linear-gradient(90deg, transparent 0%, #0066ff 50%, transparent 100%);
}

.glass-card.border-b-4.border-pink-500 {
  border-bottom: 4px solid #5a4fcf;
  box-shadow: 0 8px 32px rgba(90, 79, 207, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-card.border-b-4.border-pink-500::after {
  background: linear-gradient(90deg, transparent 0%, #5a4fcf 50%, transparent 100%);
}

.glass-card.border-b-4.border-orange-500 {
  border-bottom: 4px solid #00b4d8;
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-card.border-b-4.border-orange-500::after {
  background: linear-gradient(90deg, transparent 0%, #00b4d8 50%, transparent 100%);
}

.glass-card.border-b-4.border-green-500 {
  border-bottom: 4px solid #00d4ff;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-card.border-b-4.border-green-500::after {
  background: linear-gradient(90deg, transparent 0%, #00d4ff 50%, transparent 100%);
}

/* ===================================================
   TABLE STYLES — PROFESSIONAL LIGHT BLUE GLASS
   =================================================== */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.overflow-x-auto {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 250, 255, 0.68) 100%);
  border: 1.5px solid rgba(0, 102, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08);
}

thead tr th {
  background: linear-gradient(180deg, rgba(224, 236, 255, 0.85) 0%, rgba(216, 230, 255, 0.8) 100%);
  color: #0066ff !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 18px !important;
  border-bottom: 2px solid rgba(0, 102, 255, 0.18) !important;
  white-space: nowrap;
  position: relative;
}

thead tr th::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
}

thead tr th:first-child {
  border-radius: 16px 0 0 0;
}

thead tr th:last-child {
  border-radius: 0 16px 0 0;
}

tbody tr td {
  padding: 15px 18px !important;
  font-size: 0.875rem;
  color: #0a2463 !important;
  border-bottom: 1px solid rgba(0, 102, 255, 0.08) !important;
  vertical-align: middle;
  transition: all var(--dur-fast) var(--ease);
  background: transparent;
}

tbody tr:last-child td {
  border-bottom: none !important;
}

tbody tr:last-child td:first-child {
  border-radius: 0 0 0 16px;
}

tbody tr:last-child td:last-child {
  border-radius: 0 0 16px 0;
}

tbody tr:hover td {
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.04), rgba(0, 180, 216, 0.02)) !important;
  border-bottom-color: rgba(0, 102, 255, 0.12) !important;
}

tbody tr:hover {
  box-shadow: inset 0 0 0 1px rgba(0, 102, 255, 0.1);
}

/* Table row alternating colors for better readability */
tbody tr:nth-child(even) td {
  background: rgba(0, 102, 255, 0.02);
}

tbody tr:nth-child(even):hover td {
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.06), rgba(0, 180, 216, 0.03)) !important;
}

/* ===================================================
   BADGES & STATUS PILLS — PROFESSIONAL
   =================================================== */
.badge,
span[class*="bg-"][class*="/20"],
span[class*="bg-"][class*="/10"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 180, 216, 0.05) 100%);
  border: 1px solid rgba(0, 102, 255, 0.2);
  color: #0066ff;
  transition: all var(--dur-fast) var(--ease);
}

.badge:hover {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 180, 216, 0.08) 100%);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-1px);
}

/* ===================================================
   ALERTS & NOTIFICATIONS — PROFESSIONAL
   =================================================== */
div[class*="bg-green-500/10"] {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, rgba(0, 212, 255, 0.04) 100%) !important;
  border: 1.5px solid rgba(0, 180, 216, 0.25) !important;
  border-left: 4px solid #00b4d8 !important;
  border-radius: 12px !important;
  color: #0066ff !important;
  padding: 14px 16px !important;
  animation: slideInDown var(--dur-normal) var(--ease);
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.08);
}

div[class*="bg-red-500/10"] {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%) !important;
  border: 1.5px solid rgba(220, 38, 38, 0.25) !important;
  border-left: 4px solid #dc2626 !important;
  border-radius: 12px !important;
  color: #7f1d1d !important;
  padding: 14px 16px !important;
  animation: slideInDown var(--dur-normal) var(--ease);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.08);
}

/* ===================================================
   PAGINATION & ACTION BUTTONS
   =================================================== */
a[class*="bg-white/5"],
a[class*="bg-white/10"] {
  transition: all var(--dur-normal) var(--ease) !important;
  border-radius: var(--radius-md) !important;
}

a[class*="bg-white/5"]:hover {
  background: rgba(37, 99, 235, 0.15) !important;
}

a[class*="bg-white/10"]:hover {
  background: rgba(37, 99, 235, 0.2) !important;
}

/* Action icon buttons in tables */
a.text-gray-500.hover\:text-blue-400,
a.text-gray-500.hover\:text-red-500,
a.text-gray-500.hover\:text-yellow-400 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.2);
  transition: all var(--dur-fast) var(--ease);
}

a.text-gray-500.hover\:text-blue-400:hover {
  background: rgba(0, 102, 255, 0.15);
  border-color: rgba(0, 102, 255, 0.4);
  color: #0066ff !important;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
}

a.text-gray-500.hover\:text-red-500:hover {
  background: rgba(90, 79, 207, 0.15);
  border-color: rgba(90, 79, 207, 0.4);
  color: #5a4fcf !important;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(90, 79, 207, 0.2);
}

a.text-gray-500.hover\:text-yellow-400:hover {
  background: rgba(0, 180, 216, 0.15);
  border-color: rgba(0, 180, 216, 0.4);
  color: #00b4d8 !important;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.2);
}

/* ===================================================
   SEARCH INPUT
   =================================================== */
div.relative.flex.items-center.bg-\[#0f1535\] {
  background: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(0, 102, 255, 0.2) !important;
  border-radius: 10px !important;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

div.relative.flex.items-center.bg-\[#0f1535\]:focus-within {
  border-color: rgba(0, 102, 255, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1), 0 0 15px rgba(0, 102, 255, 0.06);
}

/* ===================================================
   SECTION DIVIDERS
   =================================================== */
.border-white\/10 {
  border-color: rgba(0, 102, 255, 0.12) !important;
}

.border-white\/5 {
  border-color: rgba(0, 102, 255, 0.06) !important;
}

/* ===================================================
   LOGIN PAGE SPECIAL
   =================================================== */
body.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

main .glass-card.p-8 {
  box-shadow:
    var(--glass-shadow),
    0 0 0 1px rgba(0, 102, 255, 0.15),
    0 0 60px rgba(0, 102, 255, 0.1),
    0 0 120px rgba(0, 180, 216, 0.04);
  border-radius: 20px !important;
}

/* ===================================================
   COLLAPSIBLE FORM PANEL
   =================================================== */
#formRubrik,
#formSkenario,
#formSoal,
[id^="form"] {
  animation: fadeSlideDown 200ms var(--ease);
}

/* ===================================================
   MOBILE SIDEBAR OVERLAY
   =================================================== */
@media (max-width: 1023px) {
  #sidebar {
    box-shadow: 4px 0 50px rgba(0, 102, 255, 0.1),
      2px 0 0 rgba(0, 102, 255, 0.08);
  }
}

/* ===================================================
   CHARTS CONTAINER
   =================================================== */
.glass-card canvas {
  border-radius: var(--radius-sm);
}

/* ===================================================
   HOVER LIFT EFFECTS
   =================================================== */
.hover\:-translate-y-1:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    var(--glass-shadow),
    0 10px 30px rgba(0, 102, 255, 0.08),
    0 0 20px rgba(0, 102, 255, 0.06) !important;
}

/* ===================================================
   WEATHER WIDGET SPECIAL
   =================================================== */
.glass-card.bg-gradient-to-r {
  position: relative;
  overflow: hidden;
}

.glass-card.bg-gradient-to-r::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ===================================================
   STATION / RUBRIK MINI CARDS
   =================================================== */
.glass-card.p-4.rounded-xl.text-center {
  transition:
    transform var(--dur-normal) var(--ease),
    border-color var(--dur-normal) var(--ease),
    box-shadow var(--dur-normal) var(--ease) !important;
}

.glass-card.p-4.rounded-xl.text-center:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    var(--glass-shadow),
    0 6px 20px rgba(0, 102, 255, 0.08),
    0 0 15px rgba(0, 102, 255, 0.06) !important;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  border-color: rgba(0, 102, 255, 0.1) !important;
  color: rgba(0, 102, 255, 0.5);
  font-size: 0.75rem;
}

footer a {
  color: rgba(0, 102, 255, 0.5);
  transition: color var(--dur-fast);
}

footer a:hover {
  color: var(--text-accent);
}

/* ===================================================
   KEYFRAME ANIMATIONS
   =================================================== */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes uvPulse {

  0%,
  100% {
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.25), 0 0 24px rgba(0, 180, 216, 0.1);
  }

  50% {
    box-shadow: 0 0 24px rgba(0, 102, 255, 0.5), 0 0 48px rgba(0, 180, 216, 0.2);
  }
}

@keyframes shimmer {
  from {
    background-position: -200% center;
  }

  to {
    background-position: 200% center;
  }
}

@keyframes blueBeam {
  0% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }

  50% {
    opacity: 0.8;
    transform: scaleX(1);
  }

  100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
}

/* ===================================================
   MAIN CONTENT AREA
   =================================================== */
main {
  padding: 1.5rem 1.75rem !important;
}

@media (max-width: 768px) {
  main {
    padding: 1rem !important;
  }
}

/* ===================================================
   UTILITY OVERRIDES
   =================================================== */
.rounded-2xl {
  border-radius: var(--radius-lg) !important;
}

.rounded-xl {
  border-radius: var(--radius-md) !important;
}

.rounded-lg {
  border-radius: var(--radius-sm) !important;
}

/* Text color overrides */
.text-white-400 {
  color: var(--text-muted) !important;
}

.text-gray-400 {
  color: rgba(0, 102, 255, 0.6) !important;
}

.text-gray-500 {
  color: rgba(0, 102, 255, 0.45) !important;
}

/* Selection highlight */
::selection {
  background: rgba(0, 102, 255, 0.3);
  color: #0a2463;
}

/* Focus ring */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid rgba(0, 102, 255, 0.6);
  outline-offset: 2px;
}

/* Images */
img {
  image-rendering: auto;
  border-radius: var(--radius-sm);
}

/* =====================================================
   IMPORT CSV / UPLOAD PAGES
   ===================================================== */
.file-drop-zone {
  border: 2px dashed rgba(0, 102, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: all var(--dur-normal) var(--ease);
  cursor: pointer;
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
  border-color: rgba(0, 102, 255, 0.6);
  background: rgba(0, 102, 255, 0.04);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.08);
}

/* =====================================================
   PROGRESS BARS
   ===================================================== */
.progress-bar-track {
  background: rgba(0, 102, 255, 0.12);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-primary), var(--cyan-primary));
  border-radius: 99px;
  transition: width 0.6s var(--ease);
  box-shadow: 0 0 8px rgba(0, 102, 255, 0.5);
}

/* =====================================================
   UV BLUE GLOW DECORATIVE ELEMENTS
   ===================================================== */

/* Blue beam divider */
.glass-card>.border-b,
.glass-card>div>.border-b {
  border-color: rgba(0, 102, 255, 0.12) !important;
}

/* Glowing blue number / stat values */
.text-3xl.font-bold,
.text-4xl.font-bold,
.text-2xl.font-bold {
  text-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

/* Blue border top accent cards */
.border-t-4.border-blue-500,
.border-b-4.border-blue-500 {
  border-color: rgba(0, 102, 255, 0.8) !important;
  box-shadow: var(--glass-shadow), 0 0 0 0.5px rgba(0, 102, 255, 0.4),
    0 -4px 15px rgba(0, 102, 255, 0.1) !important;
}

/* =====================================================
   STICKY TABLE COLUMNS — UV Theme
   ===================================================== */
.sticky-col-1 {
  position: sticky;
  left: 0;
  background-color: var(--bg-surface);
  z-index: 30;
  border-right: 2px solid rgba(37, 99, 235, 0.15);
}

.sticky-col-2 {
  position: sticky;
  left: 100px;
  background-color: var(--bg-surface);
  z-index: 30;
  border-right: 2px solid rgba(37, 99, 235, 0.15);
}

thead .sticky-col-1,
thead .sticky-col-2 {
  background-color: var(--bg-elevated);
  z-index: 40;
}

thead th {
  position: sticky;
  top: 0;
  background-color: var(--bg-elevated);
  z-index: 20;
}

/* =====================================================
   PRINT OVERRIDE
   ===================================================== */
@media print {

  body::before,
  body::after,
  #sidebar,
  .no-print {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .glass-card {
    background: white !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }
}
*:focus-visible {
  outline: 2px solid rgba(0, 102, 255, 0.6);
  outline-offset: 2px;
}

/* Images */
img {
  image-rendering: auto;
  border-radius: var(--radius-sm);
}

/* =====================================================
   IMPORT CSV / UPLOAD PAGES
   ===================================================== */
.file-drop-zone {
  border: 2px dashed rgba(0, 102, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: all var(--dur-normal) var(--ease);
  cursor: pointer;
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
  border-color: rgba(0, 102, 255, 0.6);
  background: rgba(0, 102, 255, 0.04);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.08);
}

/* =====================================================
   PROGRESS BARS
   ===================================================== */
.progress-bar-track {
  background: rgba(0, 102, 255, 0.12);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-primary), var(--cyan-primary));
  border-radius: 99px;
  transition: width 0.6s var(--ease);
  box-shadow: 0 0 8px rgba(0, 102, 255, 0.5);
}

/* =====================================================
   UV BLUE GLOW DECORATIVE ELEMENTS
   ===================================================== */

/* Blue beam divider */
.glass-card>.border-b,
.glass-card>div>.border-b {
  border-color: rgba(0, 102, 255, 0.12) !important;
}

/* Glowing blue number / stat values */
.text-3xl.font-bold,
.text-4xl.font-bold,
.text-2xl.font-bold {
  text-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

/* Blue border top accent cards */
.border-t-4.border-blue-500,
.border-b-4.border-blue-500 {
  border-color: rgba(0, 102, 255, 0.8) !important;
  box-shadow: var(--glass-shadow), 0 0 0 0.5px rgba(0, 102, 255, 0.4),
    0 -4px 15px rgba(0, 102, 255, 0.1) !important;
}

/* =====================================================
   STICKY TABLE COLUMNS — LIGHT BLUE THEME
   ===================================================== */
.sticky-col-1 {
  position: sticky;
  left: 0;
  background-color: var(--bg-surface);
  z-index: 30;
  border-right: 2px solid rgba(0, 102, 255, 0.12);
}

.sticky-col-2 {
  position: sticky;
  left: 100px;
  background-color: var(--bg-surface);
  z-index: 30;
  border-right: 2px solid rgba(0, 102, 255, 0.12);
}

thead .sticky-col-1,
thead .sticky-col-2 {
  background-color: var(--bg-elevated);
  z-index: 40;
}

thead th {
  position: sticky;
  top: 0;
  background-color: var(--bg-elevated);
  z-index: 20;
}

/* =====================================================
   PRINT OVERRIDE
   ===================================================== */
@media print {

  body::before,
  body::after,
  #sidebar,
  .no-print {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .glass-card {
    background: white !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }
}


/* =====================================================
   LOGIN PAGE SPECIAL STYLING
   ===================================================== */
body.login-page,
body:has(main .glass-card.p-8) {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%) !important;
}

/* Login page heading */
main .text-center h1 {
  color: #0a2463 !important;
  text-shadow: none !important;
}

main .text-center p {
  color: #1a4d8f !important;
}

/* Login form labels */
.glass-card label.block.text-gray-400 {
  color: #0a2463 !important;
  font-weight: 700;
}

/* Login form inputs */
.glass-card input[type="text"],
.glass-card input[type="password"],
.glass-card input[type="number"] {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(0, 102, 255, 0.25) !important;
  color: #0a2463 !important;
}

.glass-card input[type="text"]::placeholder,
.glass-card input[type="password"]::placeholder,
.glass-card input[type="number"]::placeholder {
  color: rgba(10, 36, 99, 0.4) !important;
}

.glass-card input[type="text"]:focus,
.glass-card input[type="password"]:focus,
.glass-card input[type="number"]:focus {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 102, 255, 0.5) !important;
  color: #0a2463 !important;
}

/* CAPTCHA styling */
.glass-card .bg-white\/5 {
  background: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(0, 102, 255, 0.15) !important;
}

.glass-card .bg-white\/5 label {
  color: #0a2463 !important;
}

/* Error message */
.glass-card .bg-red-500\/10 {
  background: rgba(220, 38, 38, 0.08) !important;
  border-color: rgba(220, 38, 38, 0.3) !important;
  color: #7f1d1d !important;
}

/* Login button */
.glass-card button[type="submit"] {
  background: linear-gradient(135deg, #0066ff 0%, #0099ff 100%) !important;
  color: white !important;
  font-weight: 700;
}

.glass-card button[type="submit"]:hover {
  background: linear-gradient(135deg, #0052cc 0%, #0077cc 100%) !important;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3) !important;
}

/* Login page links */
.glass-card .border-t {
  border-color: rgba(0, 102, 255, 0.15) !important;
}

.glass-card .text-gray-500 {
  color: #1a4d8f !important;
}

.glass-card a.text-blue-400 {
  color: #0066ff !important;
}

.glass-card a.text-blue-400:hover {
  color: #0052cc !important;
}

/* Login page footer */
main .absolute.bottom-6 {
  color: #1a4d8f !important;
}

/* Login page nav */
nav .text-white {
  color: #0a2463 !important;
}

nav .bg-blue-500 {
  background: #0066ff !important;
}


/* =====================================================
   GLOBAL TEXT COLOR OVERRIDE - DARK TEXT FOR LIGHT THEME
   ===================================================== */

/* All text elements */
body,
body * {
  color: #0a2463 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #0a2463 !important;
}

/* Paragraphs and general text */
p, span, div, a, li, td, th {
  color: #0a2463 !important;
}

/* Text with specific classes */
.text-white {
  color: #0a2463 !important;
}

.text-gray-100 {
  color: #1a4d8f !important;
}

.text-gray-200 {
  color: #1a4d8f !important;
}

.text-gray-300 {
  color: #1a4d8f !important;
}

.text-gray-400 {
  color: #0a2463 !important;
}

.text-gray-500 {
  color: #1a4d8f !important;
}

.text-gray-600 {
  color: #1a4d8f !important;
}

.text-blue-100 {
  color: #0a2463 !important;
}

.text-blue-200 {
  color: #0a2463 !important;
}

.text-blue-300 {
  color: #1a4d8f !important;
}

.text-blue-400 {
  color: #0066ff !important;
}

.text-blue-500 {
  color: #0066ff !important;
}

.text-slate-100 {
  color: #0a2463 !important;
}

.text-slate-200 {
  color: #0a2463 !important;
}

.text-slate-300 {
  color: #1a4d8f !important;
}

.text-slate-400 {
  color: #1a4d8f !important;
}

/* Sidebar text */
#sidebar,
#sidebar * {
  color: #0a2463 !important;
}

#sidebar .text-gray-500,
#sidebar .text-gray-400,
#sidebar .text-gray-300 {
  color: #1a4d8f !important;
}

#sidebar .text-white {
  color: #0a2463 !important;
}

/* Navigation text */
nav,
nav * {
  color: #0a2463 !important;
}

nav .text-white {
  color: #0a2463 !important;
}

/* Header text */
header,
header * {
  color: #0a2463 !important;
}

header .text-white {
  color: #0a2463 !important;
}

header .text-gray-400 {
  color: #1a4d8f !important;
}

/* Main content text */
main,
main * {
  color: #0a2463 !important;
}

main .text-white {
  color: #0a2463 !important;
}

main .text-gray-400 {
  color: #1a4d8f !important;
}

main .text-gray-500 {
  color: #1a4d8f !important;
}

/* Table text */
table,
table * {
  color: #0a2463 !important;
}

thead th {
  color: #0066ff !important;
}

tbody td {
  color: #0a2463 !important;
}

/* Form labels */
label {
  color: #0a2463 !important;
}

label.text-gray-400,
label.text-gray-500 {
  color: #0a2463 !important;
}

/* Form inputs text */
input,
textarea,
select {
  color: #0a2463 !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(10, 36, 99, 0.4) !important;
}

/* Buttons text */
button,
a.bg-blue-600,
a.bg-green-600,
a.bg-red-600 {
  color: white !important;
}

/* Links */
a {
  color: #0066ff !important;
}

a:hover {
  color: #0052cc !important;
}

a.text-white {
  color: #0a2463 !important;
}

a.text-gray-400 {
  color: #1a4d8f !important;
}

a.text-gray-500 {
  color: #1a4d8f !important;
}

a.text-blue-400 {
  color: #0066ff !important;
}

a.text-blue-400:hover {
  color: #0052cc !important;
}

/* Badge and status text */
.badge,
span[class*="bg-"][class*="/20"],
span[class*="bg-"][class*="/10"] {
  color: #0a2463 !important;
}

/* Alert text */
div[class*="bg-green-500/10"],
div[class*="bg-red-500/10"],
div[class*="bg-yellow-500/10"],
div[class*="bg-blue-500/10"] {
  color: #0a2463 !important;
}

/* Footer text */
footer,
footer * {
  color: #1a4d8f !important;
}

footer a {
  color: #0066ff !important;
}

footer a:hover {
  color: #0052cc !important;
}

/* Breadcrumb text */
nav.text-sm,
nav.text-sm * {
  color: #1a4d8f !important;
}

nav.text-sm span {
  color: #0a2463 !important;
}

/* Card text */
.glass-card,
.glass-card * {
  color: #0a2463 !important;
}

.glass-card .text-white {
  color: #0a2463 !important;
}

.glass-card .text-gray-400 {
  color: #1a4d8f !important;
}

.glass-card .text-gray-500 {
  color: #1a4d8f !important;
}

/* Modal and dialog text */
.modal,
.modal * {
  color: #0a2463 !important;
}

/* Dropdown text */
.dropdown,
.dropdown * {
  color: #0a2463 !important;
}

/* Tooltip text */
.tooltip,
.tooltip * {
  color: #0a2463 !important;
}

/* Pagination text */
.pagination,
.pagination * {
  color: #0a2463 !important;
}

.pagination a {
  color: #0066ff !important;
}

.pagination a:hover {
  color: #0052cc !important;
}

/* Search input text */
input[type="search"],
input[type="search"]::placeholder {
  color: #0a2463 !important;
}

input[type="search"]::placeholder {
  color: rgba(10, 36, 99, 0.4) !important;
}

/* Icon text color (for icons that use text color) */
i, svg {
  color: inherit !important;
}

/* Specific overrides for common patterns */
.text-center,
.text-left,
.text-right {
  color: #0a2463 !important;
}

/* Ensure contrast for accessibility */
*[style*="color: white"],
*[style*="color:#fff"],
*[style*="color: #ffffff"] {
  color: #0a2463 !important;
}

/* Override inline styles for text color */
[style*="color"] {
  color: #0a2463 !important;
}


/* =====================================================
   PROFESSIONAL STYLING ENHANCEMENTS
   ===================================================== */

/* Pagination & Action Buttons Professional */
a[class*="bg-white/5"],
a[class*="bg-white/10"] {
  transition: all var(--dur-normal) var(--ease) !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 180, 216, 0.04) 100%) !important;
  border: 1px solid rgba(0, 102, 255, 0.15) !important;
  color: #0066ff !important;
}

a[class*="bg-white/5"]:hover {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 180, 216, 0.08) 100%) !important;
  border-color: rgba(0, 102, 255, 0.25) !important;
  transform: translateY(-2px);
}

a[class*="bg-white/10"]:hover {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 180, 216, 0.1) 100%) !important;
  border-color: rgba(0, 102, 255, 0.3) !important;
  transform: translateY(-2px);
}

/* Action icon buttons in tables - Professional */
a.text-gray-500.hover\:text-blue-400,
a.text-gray-500.hover\:text-red-500,
a.text-gray-500.hover\:text-yellow-400 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 180, 216, 0.04) 100%);
  border: 1.5px solid rgba(0, 102, 255, 0.15);
  transition: all var(--dur-fast) var(--ease);
  color: #0066ff !important;
}

a.text-gray-500.hover\:text-blue-400:hover {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 180, 216, 0.08) 100%);
  border-color: rgba(0, 102, 255, 0.3);
  color: #0052cc !important;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.15);
}

a.text-gray-500.hover\:text-red-500:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
  border-color: rgba(220, 38, 38, 0.3);
  color: #dc2626 !important;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.15);
}

a.text-gray-500.hover\:text-yellow-400:hover {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
  border-color: rgba(0, 180, 216, 0.3);
  color: #00b4d8 !important;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.15);
}

/* Professional Card Spacing */
.glass-card {
  margin-bottom: 1.5rem;
}

/* Professional Section Headers */
h3.border-l-4 {
  padding-left: 1.25rem !important;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #0a2463 !important;
  border-left: 4px solid #0066ff;
  margin-bottom: 1.5rem;
}

/* Professional Form Groups */
.mb-5,
.mb-6 {
  margin-bottom: 1.5rem;
}

/* Professional Input Focus States */
input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1), 0 0 20px rgba(0, 102, 255, 0.08) !important;
}

/* Professional Button Styling */
button[type="submit"],
button.bg-blue-600 {
  background: linear-gradient(135deg, #0066ff 0%, #0099ff 100%) !important;
  border: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 12px !important;
  transition: all var(--dur-normal) var(--ease);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.2);
}

button[type="submit"]:hover,
button.bg-blue-600:hover {
  background: linear-gradient(135deg, #0052cc 0%, #0077cc 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

button[type="submit"]:active,
button.bg-blue-600:active {
  transform: translateY(0);
}

/* Professional Dividers */
.border-b,
.border-t {
  border-color: rgba(0, 102, 255, 0.12) !important;
}

/* Professional Stat Card Values */
.text-3xl.font-bold,
.text-4xl.font-bold,
.text-2xl.font-bold {
  color: #0066ff !important;
  text-shadow: 0 2px 8px rgba(0, 102, 255, 0.1);
}

/* Professional Card Hover Effects */
.glass-card.p-4.rounded-xl.text-center {
  transition: all var(--dur-normal) var(--ease) !important;
}

.glass-card.p-4.rounded-xl.text-center:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* Professional Search Input */
div.relative.flex.items-center.bg-\[#0f1535\] {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(248, 250, 255, 0.7) 100%) !important;
  border: 1.5px solid rgba(0, 102, 255, 0.15) !important;
  border-radius: 12px !important;
  transition: all var(--dur-fast) var(--ease);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.06);
}

div.relative.flex.items-center.bg-\[#0f1535\]:focus-within {
  border-color: rgba(0, 102, 255, 0.3) !important;
  box-shadow: 0 6px 24px rgba(0, 102, 255, 0.12);
}

/* Professional File Drop Zone */
.file-drop-zone {
  border: 2px dashed rgba(0, 102, 255, 0.25);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  transition: all var(--dur-normal) var(--ease);
  cursor: pointer;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 180, 216, 0.01) 100%);
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
  border-color: rgba(0, 102, 255, 0.5);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.06) 0%, rgba(0, 180, 216, 0.03) 100%);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12);
  transform: translateY(-2px);
}

/* Professional Progress Bar */
.progress-bar-track {
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.08), rgba(0, 180, 216, 0.04));
  border-radius: 99px;
  height: 8px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 102, 255, 0.1);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0066ff, #00b4d8);
  border-radius: 99px;
  transition: width 0.6s var(--ease);
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.4);
}

/* Professional Sticky Columns */
.sticky-col-1,
.sticky-col-2 {
  background-color: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(248, 250, 255, 0.7) 100%);
  border-right: 2px solid rgba(0, 102, 255, 0.12);
}

/* Professional Hover Lift */
.hover\:-translate-y-1:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* Professional Border Accents */
.border-t-4.border-blue-500,
.border-b-4.border-blue-500 {
  border-color: #0066ff !important;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}
