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

.admin-header h1{
margin:0;
font-size:30px;
font-weight:800;
}

.admin-header p{
margin-top:6px;
color:#9CA3AF;
}

.logout-btn{
background:#ef4444;
color:#fff;
padding:12px 18px;
border-radius:14px;
font-weight:700;
}

.quick-menu{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:12px;
margin-bottom:24px;
}

.quick-menu a{
background:#171717;
border:1px solid rgba(255,255,255,.08);
padding:18px;
border-radius:18px;
text-align:center;
font-weight:700;
}

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

.stat-card{
padding:24px;
border-radius:24px;
color:#fff;
position:relative;
overflow:hidden;
}

.restaurants{
background:linear-gradient(
135deg,
#f59e0b,
#f97316
);
}

.promos{
background:linear-gradient(
135deg,
#14A699,
#0F766E
);
}

.claims{
background:linear-gradient(
135deg,
#3b82f6,
#2563eb
);
}

.redeemed{
background:linear-gradient(
135deg,
#22c55e,
#16a34a
);
}

.stat-icon{
font-size:34px;
margin-bottom:12px;
}

.stat-value{
font-size:38px;
font-weight:900;
line-height:1;
}

.stat-title{
margin-top:10px;
font-size:15px;
font-weight:600;
}

@media(max-width:900px){

.admin-stats{
grid-template-columns:repeat(2,1fr);
}

.quick-menu{
grid-template-columns:repeat(2,1fr);
}

}


/* restoranlar */


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

.admin-page-header h1{
margin:0;
font-size:32px;
font-weight:800;
}

.admin-page-header p{
margin-top:6px;
color:#9CA3AF;
}

.add-btn{
background:#14A699;
color:#fff;
padding:14px 20px;
border-radius:14px;
font-weight:700;
}

.restaurant-admin-list{
display:flex;
flex-direction:column;
gap:16px;
}

.restaurant-admin-card{
background:#171717;
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
padding:18px;
display:flex;
justify-content:space-between;
align-items:center;
}

.restaurant-left{
display:flex;
align-items:center;
gap:14px;
}

.restaurant-avatar{
width:56px;
height:56px;
border-radius:50%;
background:#14A699;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
font-weight:800;
color:#fff;
}

.restaurant-name{
font-size:18px;
font-weight:700;
}

.restaurant-meta{
color:#9CA3AF;
font-size:14px;
margin-top:3px;
}

.restaurant-email{
font-size:13px;
color:#6B7280;
}

.restaurant-right{
display:flex;
align-items:center;
gap:14px;
}

.restaurant-plan{
background:#222;
padding:8px 12px;
border-radius:10px;
font-size:12px;
font-weight:700;
}

.restaurant-actions{
display:flex;
gap:8px;
}

.approve-btn{
background:#16a34a;
color:#fff;
padding:10px 14px;
border-radius:10px;
font-weight:700;
}

.block-btn{
background:#dc2626;
color:#fff;
padding:10px 14px;
border-radius:10px;
font-weight:700;
}

@media(max-width:768px){

.restaurant-admin-card{
flex-direction:column;
align-items:flex-start;
gap:14px;
}

.restaurant-right{
width:100%;
justify-content:space-between;
}

}