/* =========================================================
   VIRUS DASHBOARD
========================================================= */

.virus-dashboard {

    background: #020817;

    padding: 0 1.5rem 1.5rem;

}

/* =========================================================
   GRID
========================================================= */

.virus-dashboard__grid {

    display: grid;

    grid-template-columns: 300px 1fr 280px;

    gap: 14px;

    align-items: stretch;

}

/* =========================================================
   PANELS
========================================================= */

.virus-dashboard__left,
.virus-dashboard__center,
.virus-dashboard__right {

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.015),
            rgba(255,255,255,0.005)
        );

    padding: 16px;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 12px 30px rgba(0,0,0,0.22);

}

/* =========================================================
   TITLE
========================================================= */

.virus-dashboard__title {

    font-size: 14px;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 16px;

}

/* =========================================================
   STATUS
========================================================= */

.virus-dashboard__status {

    display: flex;

    flex-direction: column;

    align-items: center;

}

/* =========================================================
   CIRCLE
========================================================= */

.virus-dashboard__circle {

    width: 110px;
    height: 110px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    border: 6px solid #4ade80;

    box-shadow:
        0 0 24px rgba(74,222,128,0.14);

}

.virus-dashboard__circle svg {

    width: 40px;
    height: 40px;

    stroke: #4ade80;

    stroke-width: 2;

}

/* =========================================================
   STATUS CONTENT
========================================================= */

.virus-dashboard__status-content h3 {

    font-size: 20px;

    line-height: 1.2;

    font-weight: 800;

    color: #4ade80;

    margin-bottom: 8px;

}

.virus-dashboard__status-content p {

    font-size: 12px;

    color: rgba(255,255,255,0.74);

    margin-bottom: 16px;

}

/* =========================================================
   LIST
========================================================= */

.virus-dashboard__status-content ul {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-bottom: 18px;

}

.virus-dashboard__status-content li {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 11px;

    line-height: 1.6;

    color: rgba(255,255,255,0.82);

}

.virus-dashboard__status-content li svg {

    width: 14px;
    height: 14px;

    stroke: #4ade80;

}

/* =========================================================
   BUTTON
========================================================= */

.virus-dashboard__status-content a,
.virus-dashboard__button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 11px 14px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    box-shadow:
        0 10px 22px rgba(37,99,235,0.22);

}

/* =========================================================
   CENTER HEADER
========================================================= */

.virus-dashboard__center-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 14px;

}

.virus-dashboard__center-header a {

    font-size: 11px;

    color: #3b82f6;

}

/* =========================================================
   TABLE
========================================================= */

.virus-dashboard__table {

    display: flex;

    flex-direction: column;

}

/* =========================================================
   ROW
========================================================= */

.virus-dashboard__row {

    display: grid;

    grid-template-columns: 2fr 1.1fr .9fr 1fr;

    gap: 12px;

    align-items: center;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255,255,255,0.05);

    font-size: 11px;

    color: rgba(255,255,255,0.82);

}

.virus-dashboard__row--head {

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.04em;

    color: rgba(255,255,255,0.42);

}

/* =========================================================
   DOT
========================================================= */

.dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    display: inline-block;

    margin-right: 8px;

}

.dot.red {

    background: #ef4444;

}

.dot.orange {

    background: #f97316;

}

/* =========================================================
   STATUS TAG
========================================================= */

.status {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 4px 8px;

    border-radius: 999px;

    font-size: 10px;

    font-weight: 700;

}

.status.green {

    background: rgba(74,222,128,0.14);

    color: #4ade80;

}

.status.orange {

    background: rgba(249,115,22,0.14);

    color: #f97316;

}

/* =========================================================
   BENEFITS
========================================================= */

.virus-dashboard__benefits {

    display: flex;

    flex-direction: column;

    gap: 16px;

    margin-bottom: 20px;

}

/* =========================================================
   BENEFIT
========================================================= */

.virus-dashboard__benefit {

    display: flex;

    align-items: flex-start;

    gap: 10px;

}

/* =========================================================
   BENEFIT ICON
========================================================= */

.virus-dashboard__benefit-icon {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(37,99,235,0.14);

    background:
        radial-gradient(
            circle at center,
            rgba(37,99,235,0.14),
            transparent 70%
        );

}

.virus-dashboard__benefit-icon svg {

    width: 18px;
    height: 18px;

    stroke: #3b82f6;

    stroke-width: 2;

}

/* =========================================================
   BENEFIT TEXT
========================================================= */

.virus-dashboard__benefit h3 {

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 4px;

}

.virus-dashboard__benefit p {

    font-size: 10px;

    line-height: 1.7;

    color: rgba(255,255,255,0.72);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .virus-dashboard__grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 768px) {

    .virus-dashboard {

        padding: 0 1rem 1rem;

    }

    .virus-dashboard__row {

        grid-template-columns: 1fr;

        gap: 6px;

    }

}


.virus-dashboard__demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff0c4;
    font-size: 8px;
    margin-top: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    background: #e74242;
}