/* --------- ড্যাশবোর্ড স্টাইল সমূহ --------- */
.dashboard-body {
    background: #f1f2f6 !important;
    display: block !important;
    padding: 0 !important;
}

.dashboard-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

.dash-header {
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #0984e3;
    object-fit: cover;
}

.btn-logout {
    background: #ff7675;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btn-logout:hover {
    background: #d63031;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 5px solid #ccc;
}

.stat-card.blue { border-left-color: #0984e3; }
.stat-card.green { border-left-color: #2ecc71; }
.stat-card.red { border-left-color: #e74c3c; }

.stat-card h4 { color: #636e72; font-size: 14px; margin-bottom: 8px; }
.stat-card p { color: #2d3436; font-size: 24px; font-weight: bold; }

.content-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.content-box h3 { margin-bottom: 20px; color: #2d3436; }

.report-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.report-table th, .report-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dfe6e9;
    font-size: 15px;
}

.report-table th { background: #f8f9fa; color: #2d3436; }

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.badge.success { background: #e5faf2; color: #2ecc71; }
.badge.danger { background: #ffebeb; color: #e74c3c; }/* --------- এডমিন প্যানেল অতিরিক্ত স্টাইল --------- */
.admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.admin-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background: #fff;
}