.cards {
    width: 600px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 5px;
}

/* สไตล์สำหรับ Card Chart */
.card-chart {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-chart .card-header {
    background-color: rgb(88, 164, 240);
    /* สีน้ำเงิน */
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
}

.card-chart .card-body {
    padding: 20px;
    background-color: rgb(254, 255, 255);
    /* สีพื้นหลังอ่อน */
}

.card-chart .card-footer {
    background-color: rgb(227, 239, 251);
    /* สีเทาอ่อน */
    color: #6c757d;
    font-size: 14px;
    padding: 10px 15px;
    text-align: center;
}

/* ปรับขนาด canvas */
.card-chart canvas {
    max-width: 100%;
    /* ให้ขยายเต็มพื้นที่ของ Card */
    height: 300px;
    /* กำหนดความสูง */
}