/* Dark gradient background */
#page_wrapper {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
}

/* Glassmorphism cards */
.service {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.service:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(99, 102, 241, 0.4) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15) !important;
}

/* Section headers */
.service-group-name {
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  padding-bottom: 0.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-bottom: 1rem !important;
}

/* Service names */
.service-name {
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Service descriptions */
.service-description {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Widget text */
.widget-label {
  color: rgba(255, 255, 255, 0.5) !important;
}

.widget-value {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
}

/* Icon glow effect */
.service-icon {
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3)) !important;
  transition: filter 0.3s ease !important;
}

.service:hover .service-icon {
  filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6)) !important;
}

/* Info widgets (date, time, etc) */
.information-widget-wrapper {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Search bar */
#search-container input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: white !important;
  backdrop-filter: blur(10px) !important;
}

#search-container input:focus {
  border-color: rgba(99, 102, 241, 0.5) !important;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2) !important;
}

/* Title styling */
.title {
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Status indicators glow */
.status-indicator {
  box-shadow: 0 0 8px currentColor !important;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Subtle pulse animation for status dots */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.status-indicator.online {
  animation: pulse 2s ease-in-out infinite;
}
