.pcl-wrapper {
    width: 100%;
}
.pcl-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.pcl-item-wrap {
    margin: 0;
    padding: 0;
}
.pcl-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 15px;
    box-sizing: border-box;
}
.pcl-item:hover {
    text-decoration: none;
}
.pcl-name {
    flex-grow: 1;
    font-weight: 500;
}
.pcl-count {
    background: rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.85em;
    margin-left: 10px;
}

/* Layout: Minimal */
.pcl-layout-minimal .pcl-item {
    padding: 8px 0;
    background: transparent !important;
}
.pcl-has-divider.pcl-layout-minimal .pcl-item-wrap:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Layout: Modern List */
.pcl-layout-modern .pcl-item {
    border-radius: 4px;
    background: #f9f9f9;
}
.pcl-layout-modern .pcl-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}
.pcl-has-divider.pcl-layout-modern .pcl-item-wrap:not(:last-child) {
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

/* Layout: Card Style */
.pcl-layout-card .pcl-list {
    gap: 12px;
}
.pcl-layout-card .pcl-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 15px 20px;
}
.pcl-layout-card .pcl-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}