body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    padding: 20px;
    flex: 1;
}
.stat-section {
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.stat-section h4 {
    margin: 0 0 10px;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}
.stat-section p {
    margin: 10px 0;
    padding: 5px 0;
    font-size: 1rem;
}
.stat-section p span {
    font-weight: bold;
    color: #555;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    bottom: 0;
    width: 100%;
}
.stat-section .bar {
    display: inline-block;
    height: 10px;
    background: #4CAF50;
    margin-left: 10px;
}
