.widget {
  padding: 16px;
  border-radius: 12px;
  background: #406260;
  position: relative;
  margin-bottom:1em;
}

.grid {
  display: flex;
  flex-wrap: wrap;    /* automatically wrap dots */
  gap: 4px;           /* spacing between dots */
  margin-bottom: 8px;
}

.dot {
  width: 6px;         /* fixed size */
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.filled { background-color: white; }
.unfilled { background-color: rgba(255,255,255,0.4); }

.widget__footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color:white;
}

.widget__footer b { font-weight: bold; }
