.category-section {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.category-selectbox-scroller {
    flex: none;
    width: 200px;
    margin-right: 10px;
}

.scroll-content {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
}

.category-selectbox {
    list-style-type: none;
    padding: 0;
}

.category-selectbox li {
    padding: 10px;
    cursor: pointer;
}

.category-selectbox li:hover,
.category-selectbox li.active {
    background-color: #f0f0f0;
    font-weight: bold;
}
.breadcrumb-item:hover {
    cursor: pointer;
}
.breadcrumb-item {
    font-size: 18px !important;
    font-weight: bold;
}
.breadcrumb-item.active {
    font-weight: bold;
}


#loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

#loading-indicator::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.category-card {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.category-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.category-card .btn {
    margin-top: 10px;
}

.category-card .btn + .btn {
    margin-left: 10px;
}
.category-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
