.content-container {
    padding: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.judul {
    text-align: center;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    color: #263238;
    border-bottom: 2px solid #e0e0e0;
}

.grafik-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.grafik-button {
    padding: 10px 24px;
    border: none;
    background-color: #263238; /* Seragam dengan header tabel */
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.grafik-button:hover {
    background-color: #1b2327;
    transform: scale(1.03);
}

.grafik-box {
    width: 100%;
    max-width: 1200px; /* diperlebar dari 900px */
    min-height: 400px; /* diperpanjang (bisa disesuaikan) */
    margin: 0 auto 40px auto;
    padding: 30px; /* sedikit ditambah untuk ruang isi */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}
