    .slider-container {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .category-slider {
        display: flex;
        transition: transform 0.5s ease;
        cursor: grab;
        height: 302px;
    }

    .category-slider:active {
        cursor: grabbing;
    }

    .item-container {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 140px;
        height: 300px;
        background-color: #f3f3f3;
        box-sizing: border-box;
        border-right: 1px solid #eee;
    }

    .item-container .item {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50%;
        width: 100%;
        background-color: #fff;
    }

    .item img {
        width: 100px;
        height: auto;
        display: block;
        margin: 0 auto;
        item-align:center
    }

    .item-content {
        padding: 16px;
        text-align: center;

    }

    .item-text {
        font-size: 12px;
        color: #555;
        margin: 8px 0 16px;
        font-weight: bold;
    }


    .nav-buttons button:hover {
        background-color: transparent;
    }


    .item-container .item + .item {
        border-top: 1px solid #eee;
    }


    .nav-buttons {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .nav-buttons button {
        pointer-events: all;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #ff9800;
        color: white;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2em;
        z-index: 2;
        position: relative;
    }


    .nav-buttons button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
        background-color: #ff9800;
    }

    .nav-buttons button:active {
        transform: scale(0.95);
    }

    #nextButton {
        margin-right: -25px;
        padding-right: 15px;
    }

    #prevButton {
        margin-left: -25px;
        padding-left: 15px;
    }


    #slider .item-container .item:hover {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    .item-content .item-text {
        color: #757575;
        font-weight: normal;
        font-size: 13px;
    }
    /* Tablet (max-width: 768px) */
    @media (max-width: 768px) {
        .category-slider {
            height: auto;
        }

        .item-content .item-text {
            font-size: 11px;
            line-height: 1em;
        }

        .item-container {
            width: 100px;
            height: 250px;
        }

        .item img {
            width: 80px;
        }

        .item-text {
            font-size: 11px;
        }


    }

    /* Mobile Landscape (max-width: 576px) */
    @media (max-width: 576px) {
        .item-container {
            width: 80px;
            height: 220px;
        }


        .item img {
            width: 50px;
        }

        .item-text {
            font-size: 8px;
        }


    }

    /* Mobile Portrait (max-width: 400px) */
    @media (max-width: 400px) {
        .item-container {
            width: calc(100%/3);
            height: 200px;
        }

        .item img {
            width: 40px;
        }

        .item-text {
            font-size: 7px;
        }

    }

.item .item-content .item-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
