.infectionmonitor {
    margin: 0 0 20px 0;
    padding: 18px;
    border-radius: 14px;
    background: #ddd;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.infectionmonitor_main_title {
    margin-bottom: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.infectionmonitor_grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    align-items: stretch;
}

.infectionmonitor_box {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.infectionmonitor_box_accounts {
    border: 1px solid rgba(166, 29, 36, 0.22);
}

.infectionmonitor_box_npcs {
    border: 1px solid rgba(208, 122, 31, 0.22);
}

.infectionmonitor_title {
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 700;
}

.infectionmonitor_numbers {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.92;
}

.infectionmonitor_bar {
    position: relative;
    width: 100%;
    height: 16px;
    overflow: hidden;
    border-radius: 999px;
    background: #ccc;
}

.infectionmonitor_fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.25s ease-in-out;
}

.infectionmonitor_fill_accounts {
    background: linear-gradient(90deg, #7f1218 0%, #a61d24 55%, #cf3941 100%);
}

.infectionmonitor_fill_npcs {
    background: linear-gradient(90deg, #9a5614 0%, #d07a1f 55%, #eba347 100%);
}

.infectionmonitor_extra_text {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .infectionmonitor_grid {
        grid-template-columns: 1fr;
    }
}