.bs-dashboard{
    max-width:1200px;
    margin:30px auto;
    font-family:Arial,sans-serif;
}

.bs-header{
    background:#0b86d5;
    color:#fff;
    padding:25px;
    border-radius:12px;
    margin-bottom:25px;
}

.bs-header h2{
    margin:0;
    font-size:30px;
}

.bs-header p{
    margin-top:8px;
    opacity:.9;
}

.bs-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.bs-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.bs-card h3{
    margin:0;
    font-size:18px;
}

.bs-count{
    font-size:40px;
    font-weight:bold;
    color:#0b86d5;
    margin-top:15px;
}

.bs-table{
    margin-top:30px;
}

.bs-table table{
    width:100%;
    border-collapse:collapse;
}

.bs-table th,
.bs-table td{
    padding:12px;
    border-bottom:1px solid #eee;
}

.bs-table{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.bs-table table{
    width:100%;
    border-collapse:collapse;
}

.bs-table th{
    background:#f7f9fc;
    color:#24325b;
    font-size:16px;
    font-weight:700;
    padding:18px;
    text-align:left;
}

.bs-table td{
    padding:18px;
    border-top:1px solid #edf2f7;
    vertical-align:middle;
}

.bs-view-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#0b86d5;
    color:#fff;
    padding:10px 22px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}

.bs-view-btn:hover{
    background:#086cab;
    transform:translateY(-2px);
    color:#fff;
}

/* ==========================================
   PORTAL PAGE ACTIONS
========================================== */

.bs-portal-page-actions {
    background: #0b86d5;
    color: #fff;
    padding: 15px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
}

.bs-portal-page-actions a {
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer;
}

.bs-portal-page-actions a:hover {
    opacity: 0.85;
}

.bs-action-divider {
    opacity: 0.7;
}