/*
==========================================================
DASHBOARD STYLES
File: assets/css/dashboard.css
==========================================================
*/

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

.dashboard{
    padding:20px 0;
}

/* ==========================
   STAT CARDS
========================== */

.stat-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:.3s ease;
    border-left:5px solid #01796F;
    margin-bottom:20px;
}

.stat-card:hover{
    transform:translateY(-3px);
}

.stat-card .icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#EAF7F2;
    color:#01796F;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:15px;
}

.stat-card .title{
    font-size:14px;
    color:#6c757d;
    margin-bottom:5px;
}

.stat-card .value{
    font-size:30px;
    font-weight:700;
    color:#01796F;
}

.stat-card .description{
    font-size:13px;
    color:#6c757d;
}

/* ==========================
   QUICK ACTIONS
========================== */

.quick-action{
    display:block;
    text-align:center;
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:.3s;
    color:#01796F;
    text-decoration:none;
    margin-bottom:20px;
}

.quick-action:hover{
    background:#01796F;
    color:#fff;
}

.quick-action i{
    font-size:36px;
    margin-bottom:10px;
    display:block;
}

/* ==========================
   WIDGETS
========================== */

.widget{
    background:#fff;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    margin-bottom:20px;
}

.widget-header{
    padding:15px 20px;
    border-bottom:1px solid #e5e5e5;
    font-weight:600;
    color:#01796F;
}

.widget-body{
    padding:20px;
}

/* ==========================
   CHART CONTAINER
========================== */

.chart-container{
    position:relative;
    width:100%;
    min-height:350px;
}

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

.activity-list{
    list-style:none;
    padding:0;
    margin:0;
}

.activity-list li{
    padding:12px 0;
    border-bottom:1px solid #f1f1f1;
}

.activity-list li:last-child{
    border-bottom:none;
}

/* ==========================
   PROGRESS
========================== */

.progress{
    height:10px;
    border-radius:10px;
}

.progress-bar{
    background:#01796F;
}

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

.dashboard-table{
    margin-bottom:0;
}

.dashboard-table thead{
    background:#01796F;
    color:#fff;
}

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

.profile-card{
    text-align:center;
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.profile-card img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #01796F;
    margin-bottom:15px;
}

.profile-card h5{
    color:#01796F;
    margin-bottom:5px;
}

.profile-card p{
    color:#6c757d;
}

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

@media (max-width:768px){

    .stat-card{
        margin-bottom:15px;
    }

    .quick-action{
        margin-bottom:15px;
    }

    .chart-container{
        min-height:250px;
    }

}