/* =======================
   GLOBAL
======================= */

body {
    background: #f4f6f9;
    font-family: 'Inter', sans-serif;
}


/* =======================
   BANNER
======================= */

.dashboard-banner {
    border-radius: 16px;
}


/* =======================
   KPI BOX
======================= */

.kpi-box {
    position: relative;
    padding: 18px 8px;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.kpi-box span {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffffff;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50px;
}


/* =======================
   ACTION CARDS
======================= */

.action-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 14px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    display: block;
    height: 100%;
    text-decoration: none;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}


/* ICON */

.action-card img {
    width: 100px;
    margin-bottom: 10px;
    transition: transform 0.25s ease;
}

.action-card:hover img {
    transform: scale(1.15);
}


/* TEXT */

.action-card span {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}


/* =======================
   QUOTATION CARD
======================= */

.quote-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-header h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.quote-amount {
    font-weight: 700;
    color: #198754;
}

.quote-card small {
    color: #666;
}

.quote-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}


/* =======================
   COLOR HELPERS
======================= */

.bg-primary {
    background: #0d6efd;
}

.bg-warning {
    background: #ffc107;
    color: #000;
}

.bg-success {
    background: #198754;
}


/* =======================
   MOBILE OPTIMIZATION
======================= */

@media (max-width: 576px) {
    .action-card img {
        width: 76px;
    }
    .kpi-box {
        font-size: 13px;
    }
}