.module-runtime-launch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 18px 0;
    padding: 18px 20px;
    border: 1px solid rgba(64, 217, 255, .22);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16, 47, 66, .8), rgba(6, 22, 34, .92));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.module-runtime-launch strong {
    display: block;
    margin-top: 5px;
    color: #eaf8ff;
}

.module-runtime-launch p {
    margin: 6px 0 0;
    color: #8ca8ba;
}

.module-runtime-launch p[data-state="ok"] {
    color: #5fe7c3;
}

.module-runtime-launch p[data-state="error"] {
    color: #ff8ca0;
}

.module-runtime-launch .primary-button {
    flex: 0 0 auto;
    border: 1px solid rgba(48, 255, 208, .4);
    border-radius: 12px;
    background: rgba(48, 255, 208, .12);
    color: #dffff7;
    font-weight: 700;
    padding: 11px 16px;
    cursor: pointer;
}

.module-runtime-launch .primary-button:hover {
    background: rgba(48, 255, 208, .2);
}

@media (max-width: 760px) {
    .module-runtime-launch {
        align-items: stretch;
        flex-direction: column;
    }

    .module-runtime-launch .primary-button {
        width: 100%;
    }
}


.health-summary {
    margin: 18px 0;
}

.health-list {
    display: grid;
    gap: 9px;
}

.health-item {
    display: grid;
    grid-template-columns: 28px minmax(150px, .7fr) 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.025);
}

.health-item > span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    font-weight: 800;
}

.health-item.ok > span {
    background: rgba(48,255,208,.12);
    color: #5fe7c3;
}

.health-item.error > span {
    background: rgba(255,92,120,.12);
    color: #ff8ca0;
}

.health-item small {
    color: #8ca8ba;
}

.health-runtime {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.health-runtime-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    color: #b9d0dd;
    font-size: 12px;
}

.health-runtime-chip.ok b {
    color: #5fe7c3;
}

.health-runtime-chip.error b {
    color: #ff8ca0;
}

@media (max-width: 760px) {
    .health-item {
        grid-template-columns: 28px 1fr;
    }

    .health-item small {
        grid-column: 2;
    }
}


.reports-kpis {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.reports-kpis article,
.reports-money-grid > div {
    padding: 15px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.03);
}

.reports-kpis small,
.reports-kpis span,
.reports-money-grid small {
    display: block;
    color: #8ca8ba;
}

.reports-kpis strong,
.reports-money-grid strong {
    display: block;
    margin: 6px 0 3px;
    color: #eaf8ff;
    font-size: 23px;
}

.reports-kpis span {
    font-size: 11px;
}

.reports-money-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.reports-table-wrap {
    overflow-x: auto;
}

.reports-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.reports-table th,
.reports-table td {
    padding: 11px 10px;
    border-bottom: 1px solid rgba(255,255,255,.075);
    text-align: left;
    color: #c8dbe5;
}

.reports-table th {
    color: #7fa0b1;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.reports-table td small {
    display: block;
    margin-top: 3px;
    color: #718a99;
}

.reports-muted {
    color: #8ca8ba;
}

@media (max-width: 1100px) {
    .reports-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .reports-kpis,
    .reports-money-grid {
        grid-template-columns: 1fr;
    }
}
