.indicators-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.indicators-box-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    perspective: 1000px;
}

.indicators-box-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%) rotateY(30deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    backface-visibility: hidden;
}

.indicators-box-slide-active {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
    pointer-events: all;
    z-index: 2;
}

.indicators-box-slide:nth-child(1) {
    transform: translateX(-100%) rotateY(-30deg);
}

.indicators-box-slide:nth-child(2) {
    transform: translateX(100%) rotateY(30deg);
}

.indicators-box-slide-active:nth-child(1) {
    transform: translateX(0) rotateY(0deg);
}

.indicators-box-slide-active:nth-child(2) {
    transform: translateX(0) rotateY(0deg);
}

.indicators-box-content {
    width: 90%;
    height: 90%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.indicators-box-dots {
    position: absolute;
    top: 10px; /* Изменено с bottom на top */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}

.chart-watermark {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 20px;
    font-weight: 200;
    color: var(--secondary-text-color);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 1px;
}

.indicators-box-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    padding: 0;
}

.indicators-box-dot:hover {
    background: var(--success-light);
    transform: scale(1.2);
}

.indicators-box-dot-active {
    background: var(--success-light);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--success-light);
}

/* Стили для тултипа графика */
.chart-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    pointer-events: none;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}