.rtcl-simple-cat-wrapper {
    padding: 1rem;
    max-width: 100%;
}

.rtcl-simple-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rtcl-cat-item {
    background: #f9f9f9;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.rtcl-cat-item:hover {
    background: #f1f1f1;
}

.rtcl-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.rtcl-cat-name {
    flex-grow: 1;
}

.rtcl-cat-count {
    font-size: 0.9rem;
    color: #777;
    white-space: nowrap;
}

/* Responsive Enhancements */
@media (min-width: 768px) {
    .rtcl-simple-cat-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rtcl-cat-item {
        flex: 1 1 calc(50% - 1rem);
        margin-right: 1rem;
    }

    .rtcl-cat-item:nth-child(2n) {
        margin-right: 0;
    }
}

@media (min-width: 1024px) {
    .rtcl-cat-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .rtcl-cat-item:nth-child(3n) {
        margin-right: 0;
    }
}

.rtcl-simple-cat-wrapper {
    padding: 1rem;
}

.rtcl-simple-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rtcl-simple-cat-item {
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}

.rtcl-simple-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.rtcl-simple-cat-link:hover {
    color: #0073aa;
}

.cat-name {
    flex: 1;
}

.cat-count {
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.95rem;
    color: #555;
}
