.report-card {
    margin-top: 18px;
    padding: 20px 24px;
    border: 1px solid #dce1da;
    border-radius: 20px;
    background: #fff;
}

.report-card summary {
    cursor: pointer;
    font-weight: 800;
}

.report-card form {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.report-card label {
    font-weight: 800;
}

.report-card select,
.report-card textarea {
    width: 100%;
    border: 1px solid #b9c5bf;
    border-radius: 12px;
    background: #fff;
    color: #2f2027;
    color-scheme: light;
    padding: 12px;
    font: inherit;
}

.report-card select {
    min-height: 48px;
    line-height: 1.6;
}

.report-card select option,
.report-card select optgroup {
    background: #fff;
    color: #2f2027;
    font: inherit;
}

.report-card select:focus-visible {
    border-color: #8e526f;
    outline: 3px solid rgba(86, 38, 66, .14);
    outline-offset: 2px;
}

.report-card textarea {
    min-height: 120px;
    resize: vertical;
}
