
.table_stats {
    
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative; 
    
}



#partners a {
    display: inline-block;
    margin: 10px 15px;
}

#partners img {
    max-width: 150px;   /* All logos will scale down to this width */
    max-height: 120px;
    height: auto;       /* maintain aspect ratio */
    vertical-align: middle;
    transition: transform 0.3s;
}

#partners img:hover {
    transform: scale(1.1); /* slight zoom effect on hover */
}








.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.stat-box {
    background: white;
    border-radius: 8px;
    padding: 8px 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.stat-box:hover {
    transform: scale(1.03);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a4a4a;
}

.stat-label {
    margin-top: 5px;
    font-size: 1.3rem;
    color: #666;
}


.stat-box.total {
    background: #ffdddd;
}

.stat-box  {
    background: #f2dfdd;
}

