﻿.dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: black;
    opacity: 0.3; /* default fade */
    box-shadow: 0 0 8px #66cc00;
    border: solid white 1px;
}
