.gw-cat-item a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 5px;
	text-decoration: none !important;
}
.gw-cat-item.active a {
    background: #222222 !important;
}
.gw-cat-item a:hover {
    background: #f5f5f5;
}
.gw-cat-item .gw-cat-img img {
    width: 25px;
    height: 25px;
    object-fit: cover;
}
.gw-cat-item:first-child .gw-cat-img img {
    filter: brightness(1) invert(1);
}
.gw-cat-item.active .gw-cat-img img {
.gw-cat-item.gw-bihar-election .gw-cat-img img {
    filter: none !important;
}
	filter: brightness(0) invert(1);
}
.gw-cat-item .gw-cat-name {
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #000000;
}
.gw-cat-item.active .gw-cat-name {
	color: #FFFFFF;
}

/* Hidden categories (initially hidden) */
.gw-cat-item.gw-hidden-category {
    display: none;
}

/* More button styling */
.gw-more-button-container {
    margin-top: 5px;
}

.gw-more-button {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 12px 20px;
    font-family: "DM Sans", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.gw-more-button:hover {
    background: #e9ecef;
    color: #212529;
}

.gw-more-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,.25);
}

.gw-arrow-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.gw-more-button.expanded .gw-arrow-icon {
    transform: rotate(180deg);
}

/* Animation for smooth expand/collapse */
.gw-cat-item.gw-hidden-category.gw-show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown styles for राज्य menu */
.gw-dropdown-item {
    position: relative;
}

.gw-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gw-dropdown-trigger:hover {
    background: #f5f5f5;
}

.gw-dropdown-item.active .gw-dropdown-trigger {
    background: #ffffff !important;
}

.gw-dropdown-item.active .gw-dropdown-trigger .gw-cat-img img {
    filter: none !important;
}

.gw-dropdown-item.active .gw-dropdown-trigger .gw-cat-name {
    color: #000000 !important;
}

.gw-dropdown-item.active .gw-dropdown-item-link a {
    background: #ffffff !important;
    color: #000000 !important;
}

.gw-dropdown-item.active .gw-dropdown-item-link a:hover {
    background: #f5f5f5 !important;
}

.gw-dropdown-item.active .gw-state-name {
    color: #000000 !important;
}

.gw-dropdown-trigger .gw-cat-name {
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #000000;
    flex-grow: 1;
}

.gw-dropdown-arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.gw-dropdown-item.active .gw-dropdown-arrow {
    transform: rotate(180deg);
}

.gw-dropdown-menu {
    display: none;
    margin-top: 5px;
    overflow: hidden;
}

.gw-dropdown-item.active .gw-dropdown-menu {
    display: block;
    animation: dropdownSlide 0.3s ease-out;
}

.gw-dropdown-item-link {
    margin-bottom: 5px;
}

.gw-dropdown-item-link a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 5px;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
}

.gw-dropdown-item-link a:hover {
    background: #f5f5f5;
}

.gw-state-name {
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #000000;
}

.gw-entertainment-name {
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #000000;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}