*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#f4f6fb;
color:#333;
}

/* HEADER */

.header{
background:#0f172a;
color:white;
padding:15px 30px;
display:flex;
justify-content:space-between;
align-items:center;
}

.header a{
color:white;
margin-left:15px;
text-decoration:none;
font-size:14px;
}

/* MAIN CONTAINER */

.container{
width:1200px;
margin:40px auto;
}

.dashboard-container{
width:1200px;
margin:40px auto;
}

/* TOP BAR */

.top-bar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
}

/* ICONS */

.icons a{
font-size:20px;
margin-left:10px;
text-decoration:none;
color:#444;
position:relative;
}

/* BADGE */

.badge{
background:red;
color:white;
padding:2px 6px;
border-radius:50%;
font-size:11px;
position:absolute;
top:-5px;
right:-10px;
}

/* CARDS */

.dashboard-cards{
display:flex;
gap:20px;
margin-bottom:30px;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
width:240px;
}

.card h3{
font-size:15px;
color:#777;
margin-bottom:8px;
}

.card h2{
font-size:30px;
}

/* ACTION BUTTONS */

.dashboard-actions{
margin-bottom:25px;
}

.btn{
padding:8px 14px;
border-radius:5px;
text-decoration:none;
color:white;
font-size:13px;
margin-right:8px;
display:inline-block;
}

.add-btn{background:#2563eb;}
.orders-btn{background:#16a34a;}

.edit{background:#3b82f6;}
.delete{background:#ef4444;}
.orders{background:#8b5cf6;}
.wallet{background:#22c55e;}
.withdraw{background:#f59e0b;}

/* TABLE */

.dashboard-table{
width:100%;
border-collapse:collapse;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.dashboard-table th{
background:#f1f5f9;
padding:15px;
text-align:left;
font-size:14px;
}

.dashboard-table td{
padding:15px;
border-top:1px solid #eee;
font-size:14px;
}

.dashboard-table tr:hover{
background:#f9fafc;
}

/* STATUS */

.status{
padding:5px 10px;
border-radius:5px;
font-size:12px;
}

.approved{
background:#dcfce7;
color:#166534;
}

.pending{
background:#fef3c7;
color:#92400e;
}

/* MARKETPLACE */

.filter-bar{
display:flex;
gap:10px;
margin-bottom:15px;
}

.filter-bar input,
.filter-bar select{
padding:8px;
border:1px solid #ccc;
border-radius:5px;
}

.filter-bar button{
padding:8px 15px;
background:#2563eb;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}

.filter-row{
display:flex;
gap:10px;
}

.filter-row input{
padding:8px;
border:1px solid #ccc;
border-radius:5px;
}

/* FOOTER */

.footer{
text-align:center;
margin-top:40px;
padding:20px;
color:#666;
}