*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#042354;
padding:30px;
}

.container{
background:white;
padding:25px;
border-radius:10px;
max-width:600px;
margin:auto;
margin-bottom:30px;
}

input{
width:100%;
padding:10px;
margin-bottom:10px;
border-radius:6px;
border:1px solid #ddd;
}

button{
width:100%;
padding:12px;
background:#2563eb;
border:none;
color:white;
border-radius:6px;
cursor:pointer;
}

button:hover{
background:#1d4ed8;
}

#dashboard{
background:white;
padding:30px;
border-radius:10px;
max-width:900px;
margin:auto;
}

.stats{
display:flex;
gap:20px;
margin-bottom:20px;
}

.card{
flex:1;
background:#2563eb;
color:white;
padding:20px;
border-radius:8px;
text-align:center;
}

.charts{
display:flex;
gap:20px;
}

.chart-box{
flex:1;
background:#f1f5f9;
padding:20px;
border-radius:8px;
}