.graph-slider {
    width: 100%;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    min-height: 200px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.graph-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
}

.graph-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: transparent;
    color: var(--red);
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator.active {
    background-color: var(--red);
    color: white;
}

.slider-controls button {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Slider Styles */
.video-slider {
    width: 100%;
    margin: 0 auto;
}

/* .video-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
} */

/* .video-slides {
    position: relative;
    width: 100%;
    min-height: 200px;
} */

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-slide.active {
    opacity: 1;
    position: relative;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.video-indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: transparent;
    color: var(--red);
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-indicator.active {
    background-color: var(--red);
    color: white;
}

.video-slider-controls button {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .graph-container {
    padding: 15px;
    }
    
    .slider-controls button,
    .video-slider-controls button {
    width: 35px;
    height: 35px;
    }
    
    .indicator,
    .video-indicator {
    width: 28px;
    height: 28px;
    font-size: 12px;
    }
}

@media (max-width: 480px) {
    .graph-container {
    padding: 10px;
    }
    
    .slider-controls,
    .video-slider-controls {
    flex-wrap: wrap;
    gap: 8px;
    }
    
    .slider-controls button,
    .video-slider-controls button {
    width: 32px;
    height: 32px;
    }
    
    .indicator,
    .video-indicator {
    width: 24px;
    height: 24px;
    font-size: 11px;
    border-width: 1px;
    }
    
    .slide-indicators,
    .video-slide-indicators {
    order: 1;
    width: 100%;
    margin: 0 8px;
    }
}