/* CSS for lawyer scroll navigation arrows */
.atf-lawyer-scroll-container {
    position: relative;
    padding: 0 50px; /* Make space for navigation arrows */
}

.atf-lawyer-scroll-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
}

.atf-lawyer-scroll-prev,
.atf-lawyer-scroll-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s;
    pointer-events: auto;
}

.atf-lawyer-scroll-prev:hover,
.atf-lawyer-scroll-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.atf-lawyer-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.atf-lawyer-scroll-wrapper {
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
}
