#subcategories {
    border-top: 1px solid #f2f5f8;
    padding: 15px 0 0 0;
}
#subcategories .subcategories {
    border: 1px solid #f2f5f8;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
}
.gpsr-toggle {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}
.gpsr-content {
    margin-top: 10px;
    background-color: #f9f9f9;
    overflow-y: auto; /* Enable vertical scrolling */
    transition: max-height 0.5s ease-in-out; /* Smooth animation */
}
.gpsr-content::-webkit-scrollbar {
    width: 8px;
}
.gpsr-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
#gpsr-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, overflow 0.3s ease;
}

#gpsr-content.open {
    max-height: 500px !important;
    overflow: auto !important;
}