body{
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    background: #f4f5f9;
}

.sidebar{
    width: 200px;
    background: #111;
    color: white;
    padding: 20px;
    height:unset;
}

.sidebar ul{
    list-style: none;
    padding: 0;
}

.sidebar li{
    margin: 10px 0;
    cursor: pointer;
}

.sidebar li.active {
    font-weight: bold;
}

.sidebar button{
    margin-top: 20px;
    padding: 10px;
    width: 100%;
}

.main{
    flex: 1;
}

.topbar{
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: white;

}

.content{
    padding: 20px;
}

.hero{
    background: white;
    padding: 20px;
    margin-bottom: 20px;

}

.hero button {
    margin-right: 10px;
    padding: 10px;
}

.income{
    background: #00c896;
    color: white;

}

.card{
    background: white;
    padding: 20px;
    margin-bottom: 20px;
}

.chart {
    display: flex;
    gap: 10px;
    height: 100px;
}

.bar {
    width: 20px;
    background: #333;
}
