body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
}

.container{
    background: #ffffff;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

h1{
    color: #007bff;
    margin-bottom: 5px;
    text-align: center;
}

p{
    margin-bottom: 20px;
    color: #666;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.chart-box{
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fcfcfc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chart-box h2{
    color: #34495e;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
}

#pieChart{
    max-width: 400px;
    margin: 0 auto;
}