body{
margin:0;
font-family:Arial;
background:#f4f6f9;
}

.sidebar{

width:220px;
height:100vh;
background:#111827;
color:white;
position:fixed;
padding:20px;

}

.sidebar h2{
margin-bottom:20px;
}

.sidebar a{

display:block;
color:white;
text-decoration:none;
padding:10px;
border-radius:6px;
margin:6px 0;

}

.sidebar a:hover{

background:#1f2937;

}

.main{

margin-left:240px;
padding:20px;

}

.topbar{

display:flex;
gap:10px;
margin-bottom:20px;

}

.topbar input{

padding:10px;
flex:1;
border-radius:6px;
border:1px solid #ccc;

}

.cards{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
margin-bottom:20px;

}

.card{

background:white;
padding:20px;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);

}

.tableBox{

background:white;
border-radius:10px;
overflow:hidden;

}

table{

width:100%;
border-collapse:collapse;

}

th{

background:#1a73e8;
color:white;
padding:12px;
text-align:left;

}

td{

padding:10px;
border-bottom:1px solid #eee;

}