/* Global, Frontend, Admin Description Styles */
.color-circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 2px solid #fff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.5s ease;
}
.color-circle:hover {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}
.color-circle-tbl {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
}

/* CSS styles for screen widths over 960px */
@media screen and (min-width: 961px) {
  .snippet-genius > thead:nth-child(1) > tr:nth-child(1) > th:nth-child(1) {
    width: 35%;
  }
}

/* CSS styles for screen widths between 783px and 960px */
@media screen and (min-width: 783px) and (max-width: 960px) {
  .snippet-genius > thead:nth-child(1) > tr:nth-child(1) > th:nth-child(1) {
    width: 40%;
  }
}