
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#050505;
font-family:Arial,sans-serif;
color:white;
}

.topbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#111;
position:sticky;
top:0;
z-index:999;
}

.logo{
font-size:22px;
font-weight:900;
color:#19a34a;
}

.menu,.notif{
font-size:24px;
}

.welcome{
padding:25px 20px;
}

.welcome h1{
font-size:38px;
line-height:1.2;
margin-bottom:25px;
}

.search input{
width:100%;
padding:18px;
background:#171717;
border:none;
border-radius:22px;
color:white;
font-size:16px;
outline:none;
}

.quick-actions{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
padding:0 20px;
margin-bottom:25px;
}

.quick-actions button{
padding:18px;
border:none;
border-radius:20px;
background:#0E4724;
color:white;
font-size:15px;
font-weight:700;
}

.stats{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
padding:0 20px;
margin-bottom:30px;
}

.card{
background:#141414;
padding:24px;
border-radius:28px;
min-height:150px;
display:flex;
flex-direction:column;
justify-content:space-between;
box-shadow:0 0 20px rgba(0,0,0,.35);
}

.card span{
font-size:42px;
font-weight:900;
}

.card p{
font-size:20px;
font-weight:700;
}

.blue{
border-left:6px solid #2563eb;
}

.green{
border-left:6px solid #22c55e;
}

.orange{
border-left:6px solid #f59e0b;
}

.red{
border-left:6px solid #ef4444;
}

.service-box{
margin:0 20px;
background:#141414;
border-radius:28px;
padding:22px;
}

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

.service-header h2{
font-size:28px;
}

.status{
background:#0E4724;
padding:10px 16px;
border-radius:14px;
font-weight:700;
}

.customer h3{
font-size:30px;
margin-bottom:6px;
}

.customer p{
opacity:.7;
margin-bottom:20px;
}

.service-buttons{
display:flex;
gap:10px;
margin-bottom:25px;
}

.service-buttons button{
flex:1;
padding:16px;
border:none;
border-radius:18px;
background:#1f1f1f;
color:white;
font-weight:700;
}

.info{
display:flex;
flex-direction:column;
gap:16px;
}

.info-row{
background:#1b1b1b;
padding:16px;
border-radius:18px;
}

.info-row label{
display:block;
opacity:.6;
margin-bottom:8px;
}

.info-row strong{
font-size:18px;
}

.bottom-space{
height:120px;
}

.bottom-nav{
position:fixed;
bottom:0;
left:0;
right:0;
background:#101010;
display:flex;
justify-content:space-around;
padding:18px;
border-top:1px solid #222;
}

.bottom-nav a{
display:flex;
flex-direction:column;
align-items:center;
gap:4px;
text-decoration:none;
color:white;
font-size:14px;
}
