.pcb-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pcb-shair {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pcb-shair p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #111;
}

/* ACTION BAR */
.pcb-actions {
    display: flex;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px dashed #e5e7eb;
}

/* BUTTON STYLE */
.pcb-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* 🔥 REMOVE DOUBLE ICON ISSUE */
.pcb-btn::before {
    content: none !important;
}

/* 🔵 HOVER BLUE EFFECT */
.pcb-btn:hover {
    background: #e0f2fe;
    border-color: #3b82f6;
    color: #1d4ed8;
}

/* COUNT STYLE */
.pcb-count {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

/* OPTIONAL: ACTIVE CLICK EFFECT */
.pcb-btn:active {
    transform: scale(0.96);
}