.rating-label {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  line-height: 1.4;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}

/* --- Color Themes --- */
.rating-no {
  background-color: #d9534f; /* red */
}

.rating-minimal {
  background-color: #f0ad4e; /* amber/orange */
}

.rating-ok {
  background-color: #0275d8; /* blue */
}

.rating-high {
  background-color: #5cb85c; /* green */
}

.rating-excel {
  background-color: #6f42c1; /* purple */
}

.rating-default {
  background-color: #b5b5b5; /* neutral grey */
}

/* --- Optional: hover effect --- */
.rating-label:hover {
  filter: brightness(1.1);
}
