.grafika-obal .top-part-wr { position: relative;}

.grafika-obal .box-container .top-part-wr .img-circle {
    display: block;
    max-width: 150px;
    border-radius: 200px;
    margin: 0 auto;
    margin-bottom: var(--spacing-l);
    overflow: hidden;
}

.grafika-obal .box-container .slider-title-center {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
    font-family: 'Barlow';
    font-weight: bold;
}

.grafika-obal .box-container .top-part-wr .prevBtn:hover,
.grafika-obal .box-container .top-part-wr .nextBtn:hover {
    transform: scale(0.85);
    background-color: rgba(27, 105, 191, 1);
}

.grafika-obal .box-container .bottom-part-wr #slider-text-content {
    margin: 0;
    position: relative;
}

.grafika-obal .box-container .pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}
.grafika-obal .box-container .pagination-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    background-color: rgba(27, 105, 191, 0.3);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.grafika-obal .box-container .pagination-dot:hover {
    background-color: rgba(27, 105, 191, 0.5);
    transform: scale(1.1);
}
.grafika-obal .box-container .pagination-dot.active {
    background-color: #1b69bf;
    width: 18px;
    height: 18px;
}