.profile-box {
    display: flex;
}

.filter-section,
.statistics-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter-group,
.statistics-table,
.statistics-chart {
    background-color: var(--background-one-transparent-color);
    color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: inset 0px 0px 10px black;
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter-options {
    background-color: var(--background-one-transparent-color);
    color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: inset 0px 0px 10px black;
    margin: 5px;
    display: flex;
    flex-direction: column;
    padding: 15px 34px;
}

.statistics-table,
.statistics-chart {
    width: 98%;
}

.filter-group label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.filter-group input[type="checkbox"] {
    margin: 0;
}

.statistics-section table tbody tr:nth-child(odd) {
    background-color: var(--table-odd-row-background-color);
}
.statistics-section table tbody tr:nth-child(even) {
    background-color: var(--table-even-row-background-color);
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* x                                                  Nutiseadmetele kohandamine                                                            x */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
@media only screen and (max-width: 1310px) {
    .profile-box,
    .filter-section,
    .statistics-section,    
    .filter-options, 
    .filter-group,
    .statistics-table,
    .statistics-chart {
        display: flex;
        flex-direction: column;
        width: auto;
    }

    .statistics-table,
    .statistics-chart {
        width: 98%;
    }

    .statistics-section {
        gap: 10px;
    }

    .statistics-table label input{
        display: block;
    }

    .filter-options {
        flex-direction: column;
    }
}