/* =========================================================
JOELSTORE DASHBOARD.CSS
White Background + Black Text
Mobile & Desktop Responsive
========================================================= */

/* RESET */
*{
margin:0;
padding:0;
box-sizing;
}

body{
background:#ffffff;
color:#000000;
font-family, Helvetica, sans-serif;
}

/* =========================================================
DASHBOARD WRAPPER
========================================================= */

.dashboard-wrapper{
display;
min-height:100vh;
}

/* =========================================================
MAIN CONTENT
========================================================= */

.dashboard-content{
flex:1;
padding:25px;
margin-left:260px;
background:#ffffff;
}

@media(max-width:768px){

.dashboard-content{
    margin-left:0;
    padding:15px;
}

}

/* =========================================================
PAGE HEADER
========================================================= */

.page-header{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

margin-bottom:25px;

}

.page-title{

font-size:28px;

font-weight:700;

color:#000;

}

.page-subtitle{

color:#555;

margin-top:5px;

}

/* =========================================================
WELCOME CARD
========================================================= */

.welcome-card{

background:#ffffff;

border:1px solid #e5e7eb;

border-radius:15px;

padding:25px;

margin-bottom:25px;

box-shadow:
0 2px 10px
rgba(0,0,0,.05);

}

.welcome-card h2{

color:#111827;

margin-bottom:10px;

}

.welcome-card p{

color:#6b7280;

}

/* =========================================================
STATS GRID
========================================================= */

.stats-grid{

display:grid;

grid-template-columns:
repeat(
    auto-fit,
    minmax(220px,1fr)
);

gap:20px;

margin-bottom:25px;

}

.stat-card{

background:#fff;

border:1px solid #e5e7eb;

border-radius:15px;

padding:20px;

box-shadow:
0 2px 10px
rgba(0,0,0,.05);

transition:.3s;

}

.stat-card{

transform:translateY(-3px);

}

.stat-title{

font-size:14px;

color:#6b7280;

margin-bottom:10px;

}

.stat-value{

font-size:30px;

font-weight:700;

color:#111827;

}

.stat-growth{

margin-top:10px;

font-size:13px;

color:#16a34a;

}

/* =========================================================
QUICK MENU
========================================================= */

.quick-menu{

display:grid;

grid-template-columns:
repeat(
    auto-fit,
    minmax(180px,1fr)
);

gap:15px;

margin-bottom:25px;

}

.quick-card{

background:#fff;

border:1px solid #e5e7eb;

border-radius:15px;

padding:20px;

text-align:center;

transition:.3s;

}

.quick-card{

box-shadow:
0 8px 20px
rgba(0,0,0,.08);

transform:translateY(-3px);

}

.quick-card a{

color:#000;
text-decoration:none;

}

.quick-icon{

font-size:36px;

margin-bottom:10px;

}

.quick-title{

font-size:15px;

font-weight:600;

}

/* =========================================================
CARD
========================================================= */

.dashboard-card{

background:#fff;

border:1px solid #e5e7eb;

border-radius:15px;

padding:20px;

margin-bottom:25px;

box-shadow:
0 2px 10px
rgba(0,0,0,.05);

}

.dashboard-card h3{

margin-bottom:15px;

}

/* =========================================================
TABLE
========================================================= */

.table-responsive{
overflow-x;
}

.table{

width:100%;
border-collapse:collapse;

}

.table th{

background:#f9fafb;

color:#111827;

padding:14px;

text-align:left;

border-bottom:
1px solid #e5e7eb;

}

.table td{

padding:14px;

border-bottom:
1px solid #f1f5f9;

}

.table tr{

background:#fafafa;

}

/* =========================================================
BADGES
========================================================= */

.badge{

display:inline-block;

padding:6px 12px;

border-radius:50px;

font-size:12px;

font-weight:600;

}

.badge-success{

background:#dcfce7;

color:#166534;

}

.badge-warning{

background:#fef3c7;

color:#92400e;

}

.badge-danger{

background:#fee2e2;

color:#991b1b;

}

.badge-primary{

background:#dbeafe;

color:#1d4ed8;

}

/* =========================================================
BUTTONS
========================================================= */

.btn{

display:inline-block;

padding:10px 18px;

border:none;

border-radius:8px;

cursor:pointer;

text-decoration:none;

font-size:14px;

transition:.3s;

}

.btn-primary{

background:#2563eb;

color:#fff;

}

.btn-success{

background:#16a34a;

color:#fff;

}

.btn-danger{

background:#dc2626;

color:#fff;

}

.btn-warning{

background:#f59e0b;

color:#fff;

}

.btn{

opacity:.9;

}

/* =========================================================
ACTIVITY LIST
========================================================= */

.activity-list{

list-style:none;

}

.activity-item{

display:flex;

justify-content:space-between;

align-items:center;

padding:12px 0;

border-bottom:
1px solid #f3f4f6;

}

.activity-item{

border-bottom:none;

}

.activity-text{

color:#111827;

}

.activity-date{

color:#6b7280;

font-size:13px;

}

/* =========================================================
INFO BOX
========================================================= */

.info-box{

background:#f8fafc;

border-left:
5px solid #2563eb;

padding:15px;

border-radius:10px;

margin-bottom:20px;

}

/* =========================================================
PROFILE CARD
========================================================= */

.profile-card{

text-align:center;

}

.profile-avatar{

width:90px;

height:90px;

border-radius:50%;

margin:auto;

display:flex;

align-items:center;

justify-content:center;

font-size:36px;

font-weight:bold;

background:#2563eb;

color:#fff;

margin-bottom:15px;

}

/* =========================================================
CHART PLACEHOLDER
========================================================= */

.chart-box{

background:#fafafa;

border:1px dashed #d1d5db;

border-radius:12px;

height:300px;

display:flex;

justify-content:center;

align-items:center;

color:#6b7280;

}

/* =========================================================
MOBILE RESPONSIVE
========================================================= */

@media(max-width:768px){

.page-header{

    flex-direction:column;

    align-items:flex-start;
}

.page-title{

    font-size:22px;
}

.stat-value{

    font-size:24px;
}

.table th,
.table td{

    padding:10px;

    font-size:13px;
}

.quick-menu{

    grid-template-columns:
    repeat(
        2,
        1fr
    );
}

.btn{

    width:100%;
    text-align:center;
}

.dashboard-card{

    padding:15px;
}

}