/* Clean Apple-style dashboard — flat, no background image */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg-color: 0 0 0;
  --card-background: rgba(28, 28, 30, 0.94);
  --card-border: rgba(255, 255, 255, 0.06);
}

html,
body,
#inner_wrapper {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#background {
  display: none !important;
}

#inner_wrapper {
  background: #000 !important;
  backdrop-filter: none !important;
}

#information-widgets {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-bottom: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.service-group,
.bookmark-group {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.service-group > div,
.bookmark-group > div {
  gap: 0.75rem !important;
}

.service-group h2,
.bookmark-group h2 {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.45) !important;
  margin-bottom: 0.35rem !important;
  padding-left: 0.15rem !important;
}

.service-card,
.bookmark-card {
  background: var(--card-background) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.service-card:hover,
.bookmark-card:hover {
  background: rgba(44, 44, 46, 0.98) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-1px);
}

.service-card .text-theme-800,
.service-card .text-theme-200,
.bookmark-card .text-theme-800,
.bookmark-card .text-theme-200 {
  font-weight: 500 !important;
  letter-spacing: -0.01em;
}

.service-card .text-theme-500,
.bookmark-card .text-theme-500 {
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 0.82rem !important;
}

.widget-container {
  background: var(--card-background) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

#footer {
  opacity: 0.35;
  border: none !important;
}

#search {
  background: rgba(28, 28, 30, 0.94) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 12px !important;
}
