.statistics-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.boxed-value {
    flex: 1 1 200px;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
    margin: 5px;
    transition: all 0.2s;
}
.boxed-value:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transform: scale(1.03);
    transition: all 0.2s;
}

.boxed-value.blue {
    background-color: #f0f8ff !important;
    color: #021934 !important;
}

.boxed-value.pink {
    background-color: #f6eaf4 !important;
    color: #7c025a !important;
}

.stat-value {
    font-size: 2em;
    font-weight: 800;
}

.stat-label {}