.table-link {
    white-space: nowrap;
    font-weight: 800;
}

.summary-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe5ee;
    border-radius: 16px;
}

.summary-strip div {
    display: flex;
    flex-direction: column;
    padding: 22px 26px;
    border-right: 1px solid #dfe5ee;
}

.summary-strip div:last-child {
    border-right: 0;
}

.summary-strip span {
    color: #637086;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.summary-strip strong {
    color: #0b1f3a;
    font-size: 27px;
}

.detail-results {
    padding-bottom: 20px;
}

.danger-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 50px;
    padding: 22px 26px;
    background: #fff8f7;
    border: 1px solid #f0c7c2;
    border-radius: 16px;
}

.danger-zone b {
    color: #8f1f16;
    font-size: 18px;
}

.danger-zone p {
    margin: 3px 0 0;
    color: #637086;
}

.danger-zone form {
    display: block;
}

.button-danger {
    background: #b42318;
    box-shadow: none;
}

@media (max-width: 700px) {
    .summary-strip {
        grid-template-columns: 1fr;
    }

    .summary-strip div {
        border-right: 0;
        border-bottom: 1px solid #dfe5ee;
    }

    .summary-strip div:last-child {
        border-bottom: 0;
    }

    .danger-zone {
        align-items: stretch;
        flex-direction: column;
    }
}

