/* Gaya Wrapper Accordion */
.wc-pcd-accordion-wrapper {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Container Item */
.wc-pcd-accordion-container {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Setiap Item Dropdown/Accordion */
.wc-pcd-item {
    border-bottom: 1px solid #eee;
}

.wc-pcd-item:last-child {
    border-bottom: none;
}

/* Header Dropdown (Yang dapat diklik) */
.wc-pcd-acc-title { /* CLASS UTAMA DROP DOWN */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* PENTING */
    text-align: left; /* PENTING */
    padding: 10px 15px;
    background-color: #f9f9f9;
    border: 1px solid #e2e2e2;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: background-color 0.3s;
    border-radius: 3px;
    margin-top: 5px;
}

.wc-pcd-acc-title:hover {
    background-color: #f1f1f1;
}

/* Judul dan Icon */
.wc-pcd-icon {
    font-size: 1.2em;
    margin-left: 10px;
    font-weight: normal;
    transition: transform 0.3s;
}

/* Konten Dropdown (Tersembunyi secara default) */
.wc-pcd-acc-panel { /* CLASS UTAMA KONTEN */
    padding: 15px;
    background-color: #fff;
    border-left: 3px solid #0073aa; /* Garis pembeda */
    border-right: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    
}

/* Gaya untuk tabel di dalam konten (Opsional, sesuaikan dengan tema) */
.wc-pcd-acc-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.wc-pcd-acc-content table,
.wc-pcd-acc-content th,
.wc-pcd-acc-content td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.wc-pcd-acc-content th {
    background-color: #f2f2f2;
}
/* Memaksa semua teks di dalam tag <strong> di Accordion menggunakan warna kustom */
.wc-pcd-accordion-wrapper strong,
.wc-pcd-accordion-wrapper b {
    /* Gunakan warna merah kustom yang Anda inginkan */
    color: #F72A21 !important; 
    /* !important digunakan untuk mengalahkan inline style seperti <span style="color: #ff4d00;"> */
}