body{
margin:0;
font-family:Inter,sans-serif;
background:#f5f6fb;
}

.admin-layout{
display:flex;
min-height:100vh;
}

.admin-sidebar{
width:220px;
background:#111827;
color:white;
padding:20px;
}

.admin-sidebar nav a{
display:block;
color:#d1d5db;
padding:10px;
text-decoration:none;
border-radius:6px;
margin-bottom:6px;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover{
background:#374151;
color:white;
}

.admin-main{
flex:1;
padding:30px;
}

.admin-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.stat-card{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.stat-card h3{
margin:0;
font-size:14px;
color:#6b7280;
}

.stat-card p{
font-size:28px;
margin:5px 0 0;
font-weight:600;
}

.recent{
margin-top:40px;
background:white;
padding:20px;
border-radius:12px;
}
.card{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
margin-top:20px;
}

.card input,
.card select{
width:100%;
padding:10px;
margin-bottom:10px;
border:1px solid #ddd;
border-radius:6px;
}

.card button{
background:#4f46e5;
color:white;
border:none;
padding:10px 15px;
border-radius:6px;
cursor:pointer;
}