body {
    font-family: Arial, sans-serif;
    background-color: #eef6c5;
    margin: 0;
    padding: 0;
}
header {
    background-color: #1f5021;
    color: white;
    text-align: center;
    padding: 1em 0;
}
.container {
    width: 90%;
    margin: 20px auto;
}
.widgets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.widgets p{
    color:#eef6c5;
}
.widget {
    background-color: #eef6c5;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin: 10px;
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(20% - 20px);
}
.widget h2 {
    margin: 0;
    font-size: 24px;
}
.widget p {
    font-size: 20px;
    margin: 10px 0 0;
}
.charts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.chart {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin: 10px;
    padding: 20px;
    flex: 1 1 48%;
    box-sizing: border-box;
}
.chart canvas {
    max-width: 100%;
    height: auto;
}
.transactions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.transaction-widget {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin: 10px;
    padding: 20px;
    text-align: left;
    flex: 1 1 calc(30% - 20px);
    max-height: 400px; /* Set a maximum height for the combined widget */
    overflow-y: auto; /* Enable vertical scrolling */
}
.transaction-widget h3 {
    margin: 0 0 10px;
}
.transaction-widget p {
    margin: 5px 0;
}
h2{
    color:#eef6c5;
}
h3{
    padding:10px;
    background-color: rgb(177, 214, 247);
    color: white;
}
h4{
    padding-left:10px;
    color:#1f5021;

}
#transaction-des p{
    padding-left: 20px;
}