﻿.content-box {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contents h4 {
    color: rgb(var(--bs-primary-rgb));
}

/* ==== Accordion Custom Style ==== */
.accordion-header {
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    border: none;
    background: none;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

/* วงกลมรอบเครื่องหมาย */
.accordion-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #0D0607;
    color: #0D0607;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    transition: all .2s ease;
    flex-shrink: 0;
}

/* ตอนเปิด (แสดงเครื่องหมาย −) */
.accordion-header.active .accordion-toggle {
    font-size: 18px;
    transform: rotate(180deg);
}

/* เนื้อหา Accordion */
.accordion-body {
    display: none;
    font-size: 18px;
}

.accordion-body.show {
    display: block;
}