body{

    margin:0;
    font-family:Poppins,sans-serif;
    background:#f6f6f6;

}

.admin-title{

    text-align:center;
    margin:40px 0;
    font-size:32px;
    color:#222;

}

.dashboard{

    width:90%;
    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.stat-card{

    background:white;

    border-radius:15px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-5px);

}

.stat-card h2{

    font-size:42px;

    margin-bottom:15px;

    color:#b88a44;

}

.stat-card p{

    font-size:18px;

    color:#666;

}

#latestOrders{

    width:90%;
    max-width:1000px;

    margin:40px auto;

}

.stat-card-link{

    width:90%;
    max-width:1000px;

    margin:30px auto;

}

.stat-card-link a{

    display:block;

    background:white;

    border-radius:15px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    color:#b88a44;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

}

.stat-card-link a:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.12);

}

@media(max-width:768px){

.admin-order{

flex-direction:column;

align-items:flex-start;

}

}