/* ===============================
   GMD CATEGORY SIDEBAR STYLING
=================================*/

.gmd-category-sidebar {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
}

.gmd-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gmd-category-list,
.gmd-category-list ul {
    list-style: none;
    padding-left: 0;
}

.gmd-category-list li {
    margin-bottom: 8px;
}

.gmd-category-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.gmd-category-list a:hover {
    color: #0074FD;
}

/* indent children */
.gmd-category-list ul {
    padding-left: 15px;
}

/* highlight active */
.current-cat > a {
    color: #0074FD;
    font-weight: 600;
}
/* ===============================
   GMD ARROW STYLING
=================================*/

.gmd-category-list .gmd-arrow {
    display: inline-block;
    margin-right: 8px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

/* Rotate when open */
.gmd-category-list .open > a .gmd-arrow {
    transform: rotate(90deg);
}

/* Smooth expand animation */
.gmd-category-list ul {
    transition: all 0.3s ease;
}

/* Child indentation */
.gmd-category-list ul {
    padding-left: 20px;
}

/* Active category highlight */
.current-cat > a {
    color: #0074FD;
    font-weight: 600;
}