.green-light {
    width: 10px;
    height: 10px;
    background-color: rgb(0, 255, 0);
    border-radius: 50%;
    display: inline-block;
}

.red-light {
    width: 10px;
    height: 10px;
    background-color: rgb(255, 0, 0);
    border-radius: 50%;
    display: inline-block;
}

.orange-light {
    width: 10px;
    height: 10px;
    background-color: rgb(255, 81, 0);
    box-shadow: 0 0 6px 2px rgb(255, 81, 0);
    border-radius: 50%;
    display: inline-block;
}

.light::after {
  content: "";
    width: 10px;
    height: 10px;
  margin-top: 5px;
  border-radius: 3px;
}

.green-light::after {
        width: 10px;
    height: 10px;
  background-color: rgb(0, 255, 0);
  box-shadow: 0 0 6px 2px rgb(0, 255, 0);
}

.orange-light::after {
        width: 10px;
    height: 10px;
  background-color: rgb(255, 81, 0);
  box-shadow: 0 0 6px 2px rgb(255, 81, 0);
}

.red-light::after {
        width: 10px;
    height: 10px;
  background-color: rgb(255, 0, 0);
  box-shadow: 0 0 6px 2px rgb(255, 0, 0);
}