.badge{
padding:6px 14px;
border-radius:999px;
font-size:11px;
font-weight:600;
letter-spacing:.5px;
backdrop-filter:blur(8px);
border:1px solid rgba(255,255,255,.1);
}

.badge-pending{ background:#f59e0b25; color:#fbbf24; }
.badge-completed{ background:#10b98125; color:#34d399; }
.badge-cancelled{ background:#ef444425; color:#f87171; }
.badge-shipped{ background:#6366f125; color:#818cf8; }

.profile{
display:flex;
align-items:center;
gap:12px;
padding:8px 10px 8px 18px;
border-radius:999px;
background:rgba(255,255,255,0.06);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(12px);
}

.logout-btn{
padding:6px 16px;
border-radius:999px;
border:none;
font-size:14px;
font-weight:500;
cursor:pointer;
background:#ef4444;
color:white;
}

.toast{
position:fixed;
top:20px;
right:20px;
background:#1f2937;
color:white;
padding:12px 18px;
border-radius:10px;
font-size:14px;
opacity:0;
transform:translateY(-20px);
transition:.3s;
z-index:9999;
}

.toast.show{
opacity:1;
transform:translateY(0);
}
.mode-toggle{
width:36px;
height:36px;
border-radius:50%;
border:none;
cursor:pointer;

display:flex;
align-items:center;
justify-content:center;

background:rgba(255,255,255,0.08);
color:#fff;
font-size:16px;

transition:.2s;
}

.mode-toggle:hover{
background:rgba(255,255,255,0.18);
transform:scale(1.05);
}
.product-layout{
display:grid;
grid-template-columns:420px 1fr;
gap:40px;
align-items:start;
}
.mode-toggle{
width:36px;
height:36px;
border-radius:50%;
border:none;
cursor:pointer;

display:flex;
align-items:center;
justify-content:center;

background:rgba(255,255,255,0.08);
color:#fff;
font-size:16px;
}
.search-box{

display:flex;
align-items:center;
gap:8px;

background:#111;

border:1px solid #2a2a2a;

padding:6px 12px;

border-radius:10px;

margin-right:15px;

transition:all .25s ease;

}

.search-box input{

background:transparent;

border:none;

outline:none;

color:white;

font-size:14px;

width:180px;

font-family:inherit;

}

.search-box input::placeholder{

color:#777;

}

.search-box:hover{

border-color:#444;

}

.search-box:focus-within{

border-color:#5b8cff;

box-shadow:0 0 0 2px rgba(91,140,255,0.2);

}

.search-icon{

font-size:14px;

opacity:.7;

}
.orders-stats{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:14px;
margin-bottom:16px;
}

.stat-box{
background:#1f2937;
padding:16px;
border-radius:10px;
box-shadow:0 4px 20px rgba(0,0,0,.3);
}

.stat-box span{
font-size:13px;
color:#9ca3af;
}

.stat-box h3{
margin-top:6px;
font-size:22px;
}

.stat-box.pending{
border-left:4px solid #f59e0b;
}

.stat-box.completed{
border-left:4px solid #22c55e;
}

.stat-box.cancelled{
border-left:4px solid #ef4444;
}
.stat-box.revenue{
border-left:4px solid #3b82f6;
}
.orders-stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
margin:20px 0 30px;
}

.stat-card{
background:#1f2937;
padding:20px;
border-radius:14px;
position:relative;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.4);
transition:.25s;
}

.stat-card span{
font-size:13px;
color:#9ca3af;
}

.stat-card h2{
margin-top:8px;
font-size:28px;
font-weight:700;
}

/* COLORS */

.stat-card.total{
border-left:4px solid #3b82f6;
}

.stat-card.pending{
border-left:4px solid #f59e0b;
}

.stat-card.completed{
border-left:4px solid #22c55e;
}

.stat-card.cancelled{
border-left:4px solid #ef4444;
}

.stat-card.revenue{
border-left:4px solid #8b5cf6;
}

/* HOVER EFFECT */

.stat-card:hover{
transform:translateY(-4px);
box-shadow:0 18px 40px rgba(0,0,0,.6);
}
.pagination{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
margin-top:25px;
}

.pagination button{
background:#1f2937;
border:none;
color:#fff;
padding:8px 16px;
border-radius:8px;
cursor:pointer;
font-weight:600;
}

.pagination button:hover{
background:#374151;
}

#pageInfo{
color:#9ca3af;
font-weight:600;
}