/* General page spacing */
.statistics-container {
    padding: 2rem 1rem;
    margin: 0 auto;
}

/* Section spacing */
.statistics-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.statistics-section:last-child {
    border-bottom: none;
}

/* Headings */

.page-title {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    padding-inline-end: 15px;
    font-size: 28px;
}

.statistics-section h2,
.statistics-section h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
    padding-inline-end: 15px;
    font-size: 23px;
}

.statistics-section h3 {
    font-size: 1.0rem;
}

/* Filter form */
.statistics-filters {
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.statistics-filters .form-control {
    min-width: 180px;
}

/* Responsive filter form */
.statistics-filters-form {
    flex-direction: column;
    align-items: left;
}

@media (min-width: 768px) {
    .statistics-filters-form {
        flex-direction: row;
        align-items: end;
    }
}

.statistics-filters-form .button {
    width: fit-content;
}

/* Table */
#topProjectsTable {
    margin-top: 1rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

#topProjectsTable th, #topProjectsTable td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

#topProjectsTable th {
    background: #f8f9fa;
    font-weight: 600;
}

#topProjectsTable tr {
    border-bottom: 1px solid #e5e5e5;
}

#topProjectsTable tr:last-child {
    border-bottom: none;
}

/* Search input */
#projectSearch {
    max-width: 350px;
    display: block;
}

/* Prevent horizontal scroll on mobile */
.statistics-container,
.statistics-section,
.statistics-filters,
.statistics-filters-form {
    max-width: 100vw;
    overflow-x: hidden;
}

#connectionsChart {
    height: 400px !important;
    width: 100% !important;
}