/* ---- GLOBAL ---- */
body {
  font-size: 14px;
}

#page-wrapper {
  max-width: 1400px;
  margin: auto;
}

/* ---- HEADER ---- */
header {
  padding-bottom: 0.5rem;
}

/* ---- SECTION TITLES ---- */
.section-title {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* ---- CARDS ---- */
.service-card {
  border-radius: 14px !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* ---- WIDGET TEXT ---- */
.widget-value {
  font-size: 1.3rem;
  font-weight: 600;
}

.widget-label {
  opacity: 0.6;
  font-size: 0.7rem;
}

/* ---- REMOVE VISUAL NOISE ---- */
.footer,
.settings-button {
  display: none !important;
}

/* ---- SCROLLBAR (subtle) ---- */
::-webkit-scrollbar {
  width: 6px;
}

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

