/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

.category-carousel-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the carousel */
    padding: 5px 0;
}

.category-carousel {
    display: flex;
    align-items: center;
    
}

.category-carousel a {
    display: inline-block;
    padding: 10px;
    margin-right: 10px;
    white-space: nowrap;
    border: 1px solid #ddd; /* Box border */
    border-radius: 4px; /* Box rounded corners */
    background-color: #f9f9f9; /* Box background color */
    text-align: center;
}

.category-separator {
    margin: 0 10px;
    font-weight: bold;
}

.parent-category {
    color: #333; /* Different color to distinguish parent */
    background-color: #e9e9e9; /* Different background color for parent */
}

@media only screen and (max-width: 999px) {
    .category-carousel-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center; /* Center the carousel */
        padding: 5px 0;
    }
    
    .category-carousel a {
        padding: 5px 10px;
        margin-right: 5px;
        text-align: center;
    }

    .category-separator {
        margin: 0 5px;
    }
}
