﻿/* ============================================================
   Info Card  —  _InfoCard.cshtml
   Colours driven entirely by skin-blue / skin-blue-light
   ============================================================ */

.info-card {
    display: block;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none !important;
    transition: box-shadow .2s ease;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

    .info-card:hover {
        text-decoration: none !important;
    }

    /* ── Header ── */
    .info-card .ic-header {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 18px;
    }

    .info-card .ic-icon {
        font-size: 28px;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }

    .info-card .ic-body {
        flex: 1;
        min-width: 0;
    }

    .info-card .ic-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .07em;
        text-transform: uppercase;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .info-card .ic-value {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -.3px;
        line-height: 1.15;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }



/* ══════════════════════════════════════════
   DARK  skin-blue
   ══════════════════════════════════════════ */
.skin-blue .info-card {
    background-color: #253038;
    border-color: #2c3b41;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .4);
}

    .skin-blue .info-card:hover {
        box-shadow: 0 8px 26px rgba(0, 0, 0, .5);
    }

    .skin-blue .info-card:hover {
        border-color: #1183e1;
    }

    .skin-blue .info-card .ic-icon {
        background-color: rgba(17, 131, 225, .15);
        color: #5aadff;
    }

    .skin-blue .info-card .ic-label {
        color: #7fa8bf;
    }

    .skin-blue .info-card .ic-value {
        color: #e8f0f7;
    }



/* ══════════════════════════════════════════
   LIGHT  skin-blue-light
   ══════════════════════════════════════════ */
.skin-blue-light .info-card {
    background-color: #ffffff;
    border-color: #e3e8f0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

    .skin-blue-light .info-card:hover {
        box-shadow: 0 8px 26px rgba(0, 0, 0, .13);
    }

    .skin-blue-light .info-card:hover {
        border-color: #1183e1;
    }

    .skin-blue-light .info-card .ic-icon {
        background-color: #e8f2fd;
        color: #1183e1;
    }

    .skin-blue-light .info-card .ic-label {
        color: #7a90a4;
    }

    .skin-blue-light .info-card .ic-value {
        color: #1a2a38;
    }



