/*
Helcyon Admin Theme
Based on Frontend Color Scheme
*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --helcyon-bg-primary: #0a0e12;
  --helcyon-bg-secondary: #0d1318;
  --helcyon-bg-card: rgba(13, 19, 24, 0.95);
  --helcyon-border: rgba(6, 182, 212, 0.18);
  --helcyon-border-light: rgba(255, 255, 255, 0.08);
  --helcyon-accent: #06b6d4;
  --helcyon-accent-hover: #0891b2;
  --helcyon-text-primary: #ffffff;
  --helcyon-text-secondary: rgba(255, 255, 255, 0.6);
  --helcyon-text-muted: rgba(255, 255, 255, 0.4);
  --helcyon-success: #10b981;
  --helcyon-warning: #f59e0b;
  --helcyon-danger: #ef4444;
  --helcyon-info: #06b6d4;
}

/* ============================================
   AUTHENTICATION PAGES STYLES
   ============================================ */
.helcyon-auth-bg {
  background: var(--helcyon-bg-primary) !important;
  min-height: 100vh;
  position: relative;
}

.helcyon-auth-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 64, 175, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.helcyon-auth-card {
  background: linear-gradient(135deg, rgba(13, 19, 24, 0.95) 0%, rgba(10, 14, 18, 0.98) 100%) !important;
  border: 1px solid var(--helcyon-border) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
  padding: 32px 36px 36px !important;
  position: relative;
  z-index: 1;
}

.helcyon-auth-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.helcyon-auth-logo img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}

.helcyon-auth-logo .brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--helcyon-text-primary);
}

.helcyon-auth-logo .brand-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  color: var(--helcyon-text-muted);
}

.helcyon-auth-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--helcyon-text-primary) !important;
  margin-bottom: 8px;
}

.helcyon-auth-subtitle {
  font-size: 14px;
  color: var(--helcyon-text-secondary) !important;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Form Styles */
.helcyon-form-label {
  font-family: 'IBM Plex Mono', monospace !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--helcyon-text-secondary) !important;
  margin-bottom: 8px !important;
}

.helcyon-form-label .required {
  color: var(--helcyon-accent);
}

.helcyon-form-control {
  width: 100%;
  padding: 12px 14px !important;
  border-radius: 8px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  color: var(--helcyon-text-primary) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--helcyon-border-light) !important;
  transition: all 0.2s ease !important;
}

.helcyon-form-control::placeholder {
  color: var(--helcyon-text-muted) !important;
}

.helcyon-form-control:focus {
  border-color: var(--helcyon-accent) !important;
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.1) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  outline: none !important;
}

.helcyon-btn-primary {
  width: 100%;
  padding: 14px 24px !important;
  background: linear-gradient(135deg, var(--helcyon-accent) 0%, #0e7490 100%) !important;
  border: none !important;
  border-radius: 10px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--helcyon-text-primary) !important;
  cursor: pointer;
  transition: all 0.2s ease !important;
}

.helcyon-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3) !important;
}

.helcyon-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.helcyon-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--helcyon-accent) !important;
  text-decoration: none !important;
}

.helcyon-link:hover {
  text-decoration: underline !important;
  color: var(--helcyon-accent-hover) !important;
}

.helcyon-text-muted {
  color: var(--helcyon-text-muted) !important;
}

.helcyon-footer {
  color: var(--helcyon-text-muted) !important;
  font-size: 13px;
}

.helcyon-alert-success {
  background: rgba(16, 185, 129, 0.1) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  border-radius: 8px !important;
  color: #6ee7b7 !important;
}

.helcyon-alert-danger {
  background: rgba(239, 68, 68, 0.1) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  border-radius: 8px !important;
  color: #fca5a5 !important;
}

.helcyon-alert-info {
  background: rgba(6, 182, 212, 0.1) !important;
  border: 1px solid rgba(6, 182, 212, 0.3) !important;
  border-radius: 8px !important;
  color: #67e8f9 !important;
}

/* Form floating custom for auth */
.helcyon-form-floating {
  position: relative;
  margin-bottom: 20px;
}

.helcyon-form-floating .form-floating-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--helcyon-text-muted);
}

/* Checkbox styles */
.helcyon-form-check .form-check-input {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--helcyon-border-light);
}

.helcyon-form-check .form-check-input:checked {
  background-color: var(--helcyon-accent);
  border-color: var(--helcyon-accent);
}

.helcyon-form-check .form-check-label {
  color: var(--helcyon-text-secondary);
  font-size: 14px;
}

/* ============================================
   DASHBOARD/MAIN LAYOUT STYLES
   ============================================ */
body[data-helcyon="true"] {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--helcyon-bg-primary) !important;
  color: var(--helcyon-text-primary);
}

body[data-helcyon="true"] #layout-wrapper {
  background: var(--helcyon-bg-primary);
}

/* Sidebar */
body[data-helcyon="true"] .vertical-menu {
  background: linear-gradient(180deg, var(--helcyon-bg-secondary) 0%, var(--helcyon-bg-primary) 100%) !important;
  border-right: 1px solid var(--helcyon-border) !important;
}

body[data-helcyon="true"] .navbar-brand-box {
  background: var(--helcyon-bg-secondary) !important;
  border-bottom: 1px solid var(--helcyon-border);
}

body[data-helcyon="true"] #sidebar-menu ul li a {
  color: var(--helcyon-text-secondary) !important;
  font-family: 'Outfit', sans-serif;
}

body[data-helcyon="true"] #sidebar-menu ul li a:hover,
body[data-helcyon="true"] #sidebar-menu ul li a.active {
  color: var(--helcyon-accent) !important;
  background: rgba(6, 182, 212, 0.1) !important;
}

body[data-helcyon="true"] #sidebar-menu .menu-title {
  color: var(--helcyon-text-muted) !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Topbar */
body[data-helcyon="true"] #page-topbar {
  background: linear-gradient(135deg, var(--helcyon-bg-secondary) 0%, var(--helcyon-bg-primary) 100%) !important;
  border-bottom: 1px solid var(--helcyon-border) !important;
}

body[data-helcyon="true"] .header-item {
  color: var(--helcyon-text-secondary) !important;
}

body[data-helcyon="true"] .header-item:hover {
  color: var(--helcyon-accent) !important;
}

body[data-helcyon="true"] .user-name {
  color: var(--helcyon-text-primary) !important;
}

body[data-helcyon="true"] .user-sub-title {
  color: var(--helcyon-text-muted) !important;
}

/* Page Content */
body[data-helcyon="true"] .page-content {
  background: var(--helcyon-bg-primary);
}

/* Cards */
body[data-helcyon="true"] .card {
  background: var(--helcyon-bg-card) !important;
  border: 1px solid var(--helcyon-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

body[data-helcyon="true"] .card-title {
  color: var(--helcyon-text-primary) !important;
  font-family: 'Outfit', sans-serif;
}

body[data-helcyon="true"] .card-body {
  color: var(--helcyon-text-secondary);
}

/* Tables */
body[data-helcyon="true"] .table {
  color: var(--helcyon-text-secondary) !important;
}

body[data-helcyon="true"] .table thead th {
  background: rgba(6, 182, 212, 0.1) !important;
  color: var(--helcyon-accent) !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--helcyon-border) !important;
}

body[data-helcyon="true"] .table tbody tr {
  border-bottom: 1px solid var(--helcyon-border-light) !important;
}

body[data-helcyon="true"] .table tbody tr:hover {
  background: rgba(6, 182, 212, 0.05) !important;
}

body[data-helcyon="true"] .table-light {
  background: rgba(6, 182, 212, 0.1) !important;
}

/* Buttons */
body[data-helcyon="true"] .btn-primary {
  background: linear-gradient(135deg, var(--helcyon-accent) 0%, #0e7490 100%) !important;
  border: none !important;
  font-family: 'Outfit', sans-serif;
}

body[data-helcyon="true"] .btn-primary:hover {
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3) !important;
}

body[data-helcyon="true"] .btn-light {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--helcyon-border-light) !important;
  color: var(--helcyon-text-secondary) !important;
}

body[data-helcyon="true"] .btn-light:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--helcyon-text-primary) !important;
}

body[data-helcyon="true"] .btn-info {
  background: linear-gradient(135deg, var(--helcyon-accent) 0%, #0e7490 100%) !important;
  border: none !important;
}

body[data-helcyon="true"] .btn-success {
  background: var(--helcyon-success) !important;
  border: none !important;
}

body[data-helcyon="true"] .btn-danger {
  background: var(--helcyon-danger) !important;
  border: none !important;
}

body[data-helcyon="true"] .btn-warning {
  background: var(--helcyon-warning) !important;
  border: none !important;
}

/* Badges */
body[data-helcyon="true"] .badge-success-subtle {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #6ee7b7 !important;
}

body[data-helcyon="true"] .badge-danger-subtle {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #fca5a5 !important;
}

body[data-helcyon="true"] .badge-warning-subtle {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #fcd34d !important;
}

body[data-helcyon="true"] .badge-info-subtle {
  background: rgba(6, 182, 212, 0.15) !important;
  color: #67e8f9 !important;
}

body[data-helcyon="true"] .badge-purple-subtle {
  background: rgba(139, 92, 246, 0.15) !important;
  color: #c4b5fd !important;
}

/* Form Controls */
body[data-helcyon="true"] .form-control {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--helcyon-border-light) !important;
  color: var(--helcyon-text-primary) !important;
}

body[data-helcyon="true"] .form-control:focus {
  border-color: var(--helcyon-accent) !important;
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.1) !important;
}

body[data-helcyon="true"] .form-select {
  background-color: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--helcyon-border-light) !important;
  color: var(--helcyon-text-primary) !important;
}

/* Dropdowns */
body[data-helcyon="true"] .dropdown-menu {
  background: var(--helcyon-bg-secondary) !important;
  border: 1px solid var(--helcyon-border) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

body[data-helcyon="true"] .dropdown-item {
  color: var(--helcyon-text-secondary) !important;
}

body[data-helcyon="true"] .dropdown-item:hover {
  background: rgba(6, 182, 212, 0.1) !important;
  color: var(--helcyon-accent) !important;
}

/* Modals */
body[data-helcyon="true"] .modal-content {
  background: var(--helcyon-bg-card) !important;
  border: 1px solid var(--helcyon-border) !important;
}

body[data-helcyon="true"] .modal-header {
  border-bottom: 1px solid var(--helcyon-border) !important;
}

body[data-helcyon="true"] .modal-footer {
  border-top: 1px solid var(--helcyon-border) !important;
}

body[data-helcyon="true"] .modal-title {
  color: var(--helcyon-text-primary) !important;
}

/* Pagination */
body[data-helcyon="true"] .page-link {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--helcyon-border-light) !important;
  color: var(--helcyon-text-secondary) !important;
}

body[data-helcyon="true"] .page-item.active .page-link {
  background: var(--helcyon-accent) !important;
  border-color: var(--helcyon-accent) !important;
  color: var(--helcyon-text-primary) !important;
}

/* Footer */
body[data-helcyon="true"] footer {
  background: transparent !important;
  color: var(--helcyon-text-muted) !important;
  border-top: 1px solid var(--helcyon-border) !important;
}

/* Charts */
body[data-helcyon="true"] .apexcharts-text {
  fill: var(--helcyon-text-secondary) !important;
}

/* Scrollbar */
body[data-helcyon="true"] ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body[data-helcyon="true"] ::-webkit-scrollbar-track {
  background: var(--helcyon-bg-primary);
}

body[data-helcyon="true"] ::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.3);
  border-radius: 4px;
}

body[data-helcyon="true"] ::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.5);
}

/* Text colors */
body[data-helcyon="true"] .text-muted {
  color: var(--helcyon-text-muted) !important;
}

body[data-helcyon="true"] .text-primary {
  color: var(--helcyon-accent) !important;
}

body[data-helcyon="true"] h1, 
body[data-helcyon="true"] h2, 
body[data-helcyon="true"] h3, 
body[data-helcyon="true"] h4, 
body[data-helcyon="true"] h5, 
body[data-helcyon="true"] h6 {
  color: var(--helcyon-text-primary) !important;
}

/* Spinner */
body[data-helcyon="true"] .spinner-border {
  color: var(--helcyon-accent) !important;
}

/* Stats Cards */
.helcyon-stat-card {
  background: linear-gradient(135deg, rgba(13, 19, 24, 0.95) 0%, rgba(10, 14, 18, 0.98) 100%);
  border: 1px solid var(--helcyon-border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.helcyon-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--helcyon-accent), transparent);
}

.helcyon-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--helcyon-text-primary);
}

.helcyon-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--helcyon-text-muted);
}

/* User Action Buttons */
.helcyon-action-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.helcyon-action-btn.edit {
  background: rgba(6, 182, 212, 0.15);
  color: #67e8f9;
}

.helcyon-action-btn.edit:hover {
  background: rgba(6, 182, 212, 0.25);
}

.helcyon-action-btn.delete {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}

.helcyon-action-btn.delete:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* ============================================
   SIDEBAR ACTIVE STATES (Helcyon Theme)
   ============================================ */

/* Active menu item - parent level */
body[data-helcyon="true"] #sidebar-menu ul li.mm-active > a {
  color: var(--helcyon-accent) !important;
  background: rgba(6, 182, 212, 0.15) !important;
  border-left: 3px solid var(--helcyon-accent);
}

body[data-helcyon="true"] #sidebar-menu ul li.mm-active > a .icon {
  color: var(--helcyon-accent) !important;
}

/* Active link with .active class */
body[data-helcyon="true"] #sidebar-menu ul li a.active {
  color: var(--helcyon-accent) !important;
  background: rgba(6, 182, 212, 0.15) !important;
}

/* Submenu styling */
body[data-helcyon="true"] #sidebar-menu .sub-menu {
  background: rgba(0, 0, 0, 0.2) !important;
  border-left: 1px solid rgba(6, 182, 212, 0.2);
  margin-left: 15px;
}

body[data-helcyon="true"] #sidebar-menu .sub-menu li a {
  color: var(--helcyon-text-secondary) !important;
  padding: 8px 15px 8px 25px !important;
  font-size: 13px;
}

body[data-helcyon="true"] #sidebar-menu .sub-menu li a:hover {
  color: var(--helcyon-accent) !important;
  background: rgba(6, 182, 212, 0.1) !important;
}

/* Active submenu item */
body[data-helcyon="true"] #sidebar-menu .sub-menu li.mm-active > a,
body[data-helcyon="true"] #sidebar-menu .sub-menu li a.active {
  color: var(--helcyon-accent) !important;
  background: rgba(6, 182, 212, 0.15) !important;
  border-left: 2px solid var(--helcyon-accent);
  padding-left: 23px !important;
}

/* Expanded dropdown arrow */
body[data-helcyon="true"] #sidebar-menu ul li.mm-active > a.has-arrow::after {
  border-color: var(--helcyon-accent) !important;
}

/* Arrow styling */
body[data-helcyon="true"] #sidebar-menu ul li a.has-arrow::after {
  border-color: var(--helcyon-text-secondary) !important;
}

body[data-helcyon="true"] #sidebar-menu ul li a.has-arrow:hover::after {
  border-color: var(--helcyon-accent) !important;
}

/* ============================================
   ACTIVE USERS TABLE (Matching Frontend Style)
   ============================================ */

body[data-helcyon="true"] .table-responsive {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--helcyon-border);
}

body[data-helcyon="true"] .table.align-middle {
  margin-bottom: 0;
}

body[data-helcyon="true"] .table.align-middle thead th {
  background: rgba(15, 23, 42, 1) !important;
  color: rgba(100, 116, 139, 1) !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(30, 41, 59, 1) !important;
  white-space: nowrap;
}

body[data-helcyon="true"] .table.align-middle tbody tr {
  background: rgba(15, 23, 42, 0.5) !important;
  border-bottom: 1px solid rgba(30, 41, 59, 0.5) !important;
  transition: background-color 0.2s ease;
}

body[data-helcyon="true"] .table.align-middle tbody tr:hover {
  background: rgba(30, 41, 59, 0.8) !important;
}

body[data-helcyon="true"] .table.align-middle tbody td {
  padding: 14px 20px !important;
  color: rgba(148, 163, 184, 1) !important;
  font-size: 14px;
  vertical-align: middle;
  border: none !important;
}

/* Avatar styling */
body[data-helcyon="true"] .avatar-xs {
  width: 32px;
  height: 32px;
}

body[data-helcyon="true"] .avatar-title {
  background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%) !important;
  color: white !important;
  font-weight: 600;
}

/* Badge styling for roles and plans */
body[data-helcyon="true"] .badge-danger-subtle {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #f87171 !important;
}

body[data-helcyon="true"] .badge-info-subtle {
  background: rgba(6, 182, 212, 0.15) !important;
  color: #67e8f9 !important;
}

body[data-helcyon="true"] .badge-success-subtle {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #6ee7b7 !important;
}

body[data-helcyon="true"] .badge-purple-subtle {
  background: rgba(139, 92, 246, 0.15) !important;
  color: #c4b5fd !important;
}

body[data-helcyon="true"] .badge-warning-subtle {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #fcd34d !important;
}

body[data-helcyon="true"] .badge-secondary-subtle {
  background: rgba(100, 116, 139, 0.15) !important;
  color: #94a3b8 !important;
}

/* Soft buttons */
body[data-helcyon="true"] .btn-soft-primary {
  background: rgba(6, 182, 212, 0.15) !important;
  color: #67e8f9 !important;
  border: none !important;
}

body[data-helcyon="true"] .btn-soft-primary:hover {
  background: rgba(6, 182, 212, 0.25) !important;
  color: #22d3ee !important;
}

body[data-helcyon="true"] .btn-soft-danger {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #fca5a5 !important;
  border: none !important;
}

body[data-helcyon="true"] .btn-soft-danger:hover {
  background: rgba(239, 68, 68, 0.25) !important;
  color: #f87171 !important;
}

/* Table light header override */
body[data-helcyon="true"] .table-light,
body[data-helcyon="true"] thead.table-light th {
  background: rgba(15, 23, 42, 1) !important;
  color: rgba(100, 116, 139, 1) !important;
}

/* Email links */
body[data-helcyon="true"] .table a.text-primary {
  color: var(--helcyon-accent) !important;
}

body[data-helcyon="true"] .table a.text-primary:hover {
  color: #22d3ee !important;
  text-decoration: underline;
}

/* User name styling */
body[data-helcyon="true"] .table .fw-medium {
  color: #ffffff !important;
}

/* Pagination styling */
body[data-helcyon="true"] .pagination {
  gap: 4px;
}

body[data-helcyon="true"] .pagination .page-link {
  background: rgba(30, 41, 59, 1) !important;
  border: 1px solid rgba(51, 65, 85, 1) !important;
  color: rgba(148, 163, 184, 1) !important;
  border-radius: 8px !important;
  padding: 8px 14px;
}

body[data-helcyon="true"] .pagination .page-link:hover {
  background: rgba(51, 65, 85, 1) !important;
  color: white !important;
  border-color: var(--helcyon-accent) !important;
}

body[data-helcyon="true"] .pagination .page-item.active .page-link {
  background: var(--helcyon-accent) !important;
  border-color: var(--helcyon-accent) !important;
  color: white !important;
}

body[data-helcyon="true"] .pagination .page-item.disabled .page-link {
  background: rgba(15, 23, 42, 1) !important;
  border-color: rgba(30, 41, 59, 1) !important;
  color: rgba(71, 85, 105, 1) !important;
  opacity: 0.5;
}

/* Empty state styling */
body[data-helcyon="true"] .table .text-muted {
  color: rgba(100, 116, 139, 1) !important;
}

/* Search input styling */
body[data-helcyon="true"] .card-body .form-control {
  background: rgba(15, 23, 42, 1) !important;
  border: 1px solid rgba(51, 65, 85, 1) !important;
  color: white !important;
  border-radius: 8px;
}

body[data-helcyon="true"] .card-body .form-control:focus {
  border-color: var(--helcyon-accent) !important;
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.15) !important;
}

body[data-helcyon="true"] .card-body .form-control::placeholder {
  color: rgba(100, 116, 139, 1) !important;
}

