/*Company Category Widget Style CSS*/
.company-category-widget {
    height: 100%;
}
.category-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px #0000000d;
    height: 100%;
}

.category-header {
display: flex;
justify-content: space-between;
align-items: center;
}

.category-title {
    margin: 0px;
}

.child-category-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.child-category-item a {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.child-category-item a:hover {
    padding-left: 18px;
    background-color: #f0f8ff;
    color: #0056b3;
}

.child-category-item .arrow-icon {
    opacity: 0;
    transition: all 0.3s ease;
}

.child-category-item a:hover .arrow-icon {
    opacity: 1;
    padding-right: 7px;
    transform: translateX(2px);
}
