/* Add here all your CSS customizations */
.st1{ 
    fill:#ff0000;
    stroke:#000000;
    stroke-miterlimit:10;
}

#myframe {
    width: 500px;
    height: 600px;
    border: none;
}

.category-bar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    background-color: #f8f9fa;
    padding: 10px 0;
}

.category-bar-scrollable {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    flex: 1;
    padding: 0 40px; /* espacio para botones */
}

.category-item {
    flex: 0 0 auto;
    padding: 10px 20px;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    user-select: none;
}

    .category-item.active {
        background-color: #0d6efd;
        color: white;
        border-color: #0d6efd;
    }

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    background-color: #91173c;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    width: 35px;
    height: 35px;
    font-size: 20px;
    cursor: pointer;
}

    .scroll-btn.left {
        left: 5px;
    }

    .scroll-btn.right {
        right: 5px;
    }

@media only screen and (width <= 980px) {
    #myframe {
        width: 100%;
        height: 440px;
        border: none;
    }
}