/* Shared OBS widget base styles (one-line bar widgets) */
body {
  background: transparent;
  color: white;
  font-family: sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
  height: 40px;        /* ✅ unified bar height */
  overflow: hidden;    /* clip if text is too tall */
}

