.status-dot {
  display: inline-block;
  width: 17px;
  height: 16px;
  border-radius: 50%;
  margin-right: 6px;
  position: relative;
  cursor: pointer;
}

.status-green {
  background-color: #28a745;
}

.article-clean {
}

.status-orange {
  background-color: #ffc107;
}

.status-dot[title]:hover:after {
  content: attr(title);
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 15px;
  white-space: nowrap;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.status-orange[title]:hover:after {
  background: #ffc107;
  color: #2d1b3b;
}

.status-orange[title]:hover:before {
  border-color: #ffc107 transparent transparent transparent;
}

