:root{
    --primary:#2563eb;
    --primary-dark:#1d4ed8;

    --sidebar-width:225px;
    --sidebar-collapse:75px;

    --bg:#f7f9fc;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins','Noto Sans Devanagari','Mangal',sans-serif;
    background:var(--bg);
}

/* Sidebar */

.sidebar{

    position:fixed;

    left:0;

    top:0;

    width:var(--sidebar-width);

    height:100vh;

    background:linear-gradient(180deg,#0d6efd,#0a58ca);

    color:#fff;

    transition:.35s;

    overflow:hidden;

    z-index:999;

}

.sidebar.collapsed{

    width:var(--sidebar-collapse);

}

.logo-area{

    text-align:center;

    padding:20px 10px;

    border-bottom:1px solid rgba(255,255,255,.15);

}

.logo-img{

    width:140px;

    height:auto;

    max-height:55px;

    object-fit:contain;

}

.logo-title{

    margin-top:10px;

    font-size:30px;

    font-weight:700;

}

.logo-sub{

    font-size:12px;

    opacity:.8;

}

.sidebar.collapsed .logo-title,
.sidebar.collapsed .logo-sub{

    display:none;

}

.sidebar a{

    display:flex;

    align-items:center;

    gap:15px;

    color:#fff;

    text-decoration:none;

    padding:15px 20px;

    margin:8px;

    border-radius:12px;

    transition:.25s;

}

.sidebar a:hover{

    background:rgba(255,255,255,.18);

    transform:translateX(5px);

}

.sidebar a.active{

    background:#fff;

    color:#0d6efd;

    font-weight:600;

}

.sidebar.collapsed a span{

    display:none;

}

.sidebar.collapsed a{

    justify-content:center;

}

/* Content */

.content{

    margin-left:225px;

    transition:.35s;

    padding:30px;

    background:#f7f9fc;

    min-height:100vh;

}

.content.expand{

    margin-left:75px;

}

/* Topbar */

.topbar{

    height:80px;

    background:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 35px;

    margin-bottom:30px;

    border-radius:0;

    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

/* Cards */

.card{

    border:none;

    border-radius:18px;

    box-shadow:0 8px 30px rgba(20,40,90,.06);

    transition:.25s;

}

/* ==========================================================
   BIDDER DASHBOARD UI
========================================================== */





.dashboard-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.card:hover{

    transform:translateY(-3px);

}

.card a{
    text-decoration:none;
}

/* ==========================================
   Dashboard Cards
========================================== */

.dashboard-card{

    padding:10px;

    cursor:pointer;

}

.dashboard-card .card-body{

    padding:28px;

}

.dashboard-number{

    font-size:42px;

    font-weight:700;

    color:#111827;

    line-height:1;

    margin-bottom:10px;

}

.dashboard-title{

    font-size:17px;

    font-weight:500;

    color:#6b7280;

    margin-bottom:18px;

}

.dashboard-link{

    color:#2563eb;

    font-size:14px;

    font-weight:600;

}

.dashboard-link i{

    transition:.25s;

}

.dashboard-card:hover .dashboard-link i{

    transform:translateX(5px);

}

.dashboard-icon{

    width:72px;

    height:72px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.dashboard-icon i{

    font-size:30px;

}