:root {
  --border-radius: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

body {
  letter-spacing: 0.01em;
}

.widget {
  border-radius: calc(var(--border-radius) + 4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.widget:hover {
  border-color: color-mix(in srgb, var(--color-primary) 35%, transparent);
}

.widget-title {
  font-weight: 600;
}

a:hover {
  color: var(--color-primary);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--color-primary) 30%, transparent);
  border-radius: 8px;
}
