#circles-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 1000;
  }
  
.circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.circle.yellow {
    background-color: #ffe600 !important;
}

.circle:not(.special) {
    background-color: white;
}

.circle.special {
    background-color: #00bfff;
}

.circle.active {
    background-color: #00ff00 !important;
}