/* Shadcn-like Dark Theme Overrides */

:root {
  --shadcn-background: #09090b;
  --shadcn-card: #18181b;
  --shadcn-card-foreground: #fafafa;
  --shadcn-primary: #fafafa;
  --shadcn-primary-foreground: #18181b;
  --shadcn-muted: #27272a;
  --shadcn-muted-foreground: #a1a1aa;
  --shadcn-border: #27272a;
}

body {
  background-color: var(--shadcn-background) !important;
  color: var(--shadcn-primary) !important;
}

/* Cards */
.services .service {
  background-color: var(--shadcn-card) !important;
  border: 1px solid var(--shadcn-border) !important;
  border-radius: 0.5rem !important;
  color: var(--shadcn-card-foreground) !important;
}

.services .service:hover {
  background-color: var(--shadcn-muted) !important;
  border-color: var(--shadcn-muted-foreground) !important;
}

/* Headers */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--shadcn-primary) !important;
}

/* Search Bar */
.search-bar input {
  background-color: var(--shadcn-muted) !important;
  border: 1px solid var(--shadcn-border) !important;
  color: var(--shadcn-primary) !important;
  border-radius: 0.5rem !important;
}

/* Glances Widget Text */
.widget-glances .metric-label {
  color: var(--shadcn-muted-foreground) !important;
}
.widget-glances .metric-value {
  color: var(--shadcn-primary) !important;
}
