
<style>
        .names-slider-container {
            margin: 20px 0;
            overflow: hidden;
            position: relative;
        }
        .names-slider {
            display: flex;
            transition: transform 0.5s ease;
            scroll-snap-type: x mandatory;
            overflow-x: scroll;
            -webkit-overflow-scrolling: touch;
        }
        .names-slider::-webkit-scrollbar {
            height: 12px;
        }
        .names-slider::-webkit-scrollbar-thumb {
            background: #0073aa;
            border-radius: 10px;
        }
        .names-slider::-webkit-scrollbar-thumb:hover {
            background: #005a8c;
        }
        .names-slider-item {
            flex: 0 0 25%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 10px;
            background: #fff;
            padding: 15px;
            text-align: center;
            scroll-snap-align: start;
            margin: 0 10px;
        }
        .names-slider-item img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .names-slider-item h3 {
            font-size: 18px;
            margin: 10px 0;
            white-space: normal;
            word-wrap: break-word;
        }
        @media (max-width: 768px) {
            .names-slider-item {
                flex: 0 0 50%;
                margin: 0 5px;
            }
        }
    </style>';
}
