

.border-left-primary{
    border-left:4px solid #4e73df!important;
}

.border-left-success{
    border-left:4px solid #1cc88a!important;
}

.border-left-info{
    border-left:4px solid #36b9cc!important;
}

.border-left-warning{
    border-left:4px solid #f6c23e!important;
}

.border-left-danger{
    border-left:4px solid #e74a3b!important;
}

.border-left-dark{
    border-left:4px solid #343a40!important;
}

.card-body h4{
    font-weight:700;
}


/* .summary-card{
    border-radius:12px;
    padding:12px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    height:100%;
}

.summary-card small{
    display:block;
    font-size:12px;
    color:#6b7280;
    margin-bottom:2px;
}

.summary-card h3{
    font-size:28px;
    margin:0;
    font-weight:700;
}

.summary-mini{
    padding:8px 10px;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#2f3542;
    color:#fff;
}

.summary-mini span{
    font-size:16px;
    font-weight:700;
}

.summary-green{background:#DCFCE7;color:#15803D;}
.summary-blue{background:#DBEAFE;color:#1D4ED8;}
.summary-yellow{background:#FEF3C7;color:#B45309;}
.summary-red{background:#FEE2E2;color:#B91C1C;}
.summary-gray{background:#F3F4F6;color:#374151;} */

/* ===========================
   HR Dashboard Summary Cards
=========================== */

.summary-card{
    border-radius:10px;
    padding:10px 25px;
    background:#ffffff;
    border:1px solid #e9ecef;
    box-shadow:0 1px 6px rgba(0,0,0,.05);
    transition:.2s;
    min-height:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.summary-card:hover{
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.summary-card small{
    font-size:11px;
    color:#6c757d;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:3px;
}

.summary-card h3{
    margin:0;
    font-size:24px;
    font-weight:700;
    line-height:1;
}

/* Compact Colored Cards */

.summary-green{
    background:#d8f8e8;
    color:#0f8c55;
}

.summary-blue{
    background:#d8e9ff;
    color:#155bd6;
}

.summary-yellow{
    background:#fff3cd;
    color:#c78300;
}

.summary-red{
    background:#ffe1e1;
    color:#d62828;
}

.summary-gray{
    background:#eceef1;
    color:#343a40;
}

/* ===========================
   Recruiter Section
=========================== */

.recruiter-summary{
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:10px;
    padding:10px 12px;
    margin-bottom:12px;
}

.recruiter-summary h6{
    font-size:15px;
    font-weight:700;
    margin-bottom:8px;
    color:#2d3748;
}

/* Chips */

.recruiter-chip-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.summary-mini{
    margin-right: 5px;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px 10px;
    background:#212936;
    color:#fff;
    border-radius:20px;
    font-size:14px;
    font-weight:600;
    line-height:1;
    transition:.2s;
}

.summary-mini:hover{
    background:#111827;
}

.summary-mini span{
    background:#3b82f6;
    color:#fff;
    padding:2px 6px;
    border-radius:10px;
    font-size:11px;
    font-weight:700;
}

/* Recruiter Count Badge */

.recruiter-total{
    background:#2563eb;
    color:#fff;
    font-size:11px;
    font-weight:700;
    padding:5px 10px;
    border-radius:20px;
}

/* ===========================
   Compact Document Cards
=========================== */

.document-card{
    border-radius:10px;
    padding:10px 14px;
    min-height:74px;
    border:1px solid #ececec;
    box-shadow:0 1px 5px rgba(0,0,0,.04);
}

.document-card small{
    font-size:11px;
    text-transform:uppercase;
    font-weight:600;
    color:#6b7280;
}

.document-card h3{
    margin-top:4px;
    margin-bottom:0;
    font-size:22px;
    font-weight:700;
}

/* Reduce Bootstrap spacing */

.summary-row .col-md-2,
.summary-row .col-md-4{
    padding-right:6px;
    padding-left:6px;
}

.summary-row{
    margin-bottom:10px;
}

/* Mobile */

@media(max-width:768px){

    .summary-card,
    .document-card{
        min-height:70px;
        padding:10px;
    }

    .summary-card h3,
    .document-card h3{
        font-size:20px;
    }

    .summary-mini{
        font-size:11px;
        padding:5px 8px;
    }

}