.chart-section {
    width: 100%;
    overflow: auto;
    margin: auto;
    background: #fff;
}

.chart-wrapper {
    overflow-x: auto;
    margin: auto;
    background: #f8f8ff;
}

.chart-title {
    text-align: center;
    background-color: #1E88E5;
    color: black;
    padding: 10px;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.rtable {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    font-family: Arial, sans-serif;
}

.rtable thead tr {
    background-color: #f2f2f2;
}

.rtable th,
.rtable td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

.rtable tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.rtable tbody tr:hover {
    background-color: #f1f1f1;
}