.slide-indicators {
    position: absolute;
    bottom: 20px;
    right: 0;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;}

.indicator {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    user-select: none;}

.indicator.active {
    background-color: #007bff;}
