/**
 * Reports page: single report builder (settings panel, preview, report name).
 * Enqueued on the report builder screen only.
 */

/* Report settings sections (form fields, date range, fields to include, filters) */
.rtec-reports-section {
    padding: 0 6px;
    margin-bottom: 2em;
}
.rtec-reports-section h3 {
    margin-bottom: .5em;
}

/* Label + input/select pairs */
.rtec-report-field {
    margin-bottom: 1em;
}
.rtec-report-field:last-child {
    margin-bottom: 0;
}
.rtec-report-field label,
.rtec-report-field .rtec-reports-sub-heading {
    display: block;
    margin-bottom: .25em;
}
.rtec-report-field input[type="text"],
.rtec-report-field input[type="number"],
.rtec-report-field input[type="date"],
.rtec-report-field select {
    display: block;
    margin-top: 0;
}
.rtec-report-field input[type="radio"],
.rtec-report-field input[type="checkbox"] {
    margin-right: 4px;
}
.rtec-report-field input[type="checkbox"] + label {
    display: inline;
    margin-bottom: 0;
}

/* Radio groups: stack options in a column */
.rtec-report-radio-group {
    display: flex;
    flex-direction: column;
    gap: .5em;
    margin-bottom: .5em;
}
.rtec-report-radio-group .rtec-report-field {
    margin-bottom: 0;
}
.rtec-report-radio-group .rtec-report-field label {
    display: inline;
    margin-bottom: 0;
}

/* Radio + label pair: flex and center align */
.rtec-report-field-radio {
    display: flex;
    align-items: center;
    gap: 6px;
}
.rtec-report-field-radio input[type="radio"] {
    margin: 0;
}

.rtec-reports-section-inputs .rtec-reports-sub-heading {
    display: block;
    margin-bottom: .25em;
    font-weight: bold;
}
.rtec-reports-section #rtec-report-save.rtec-button {
    float: right;
    margin-top: 10px;
}
.rtec-reports-section .rtec-input-wrap {
    position: relative;
}
.rtec-reports-section .rtec-input-wrap a {
    display: flex;
    align-items: center;
}
.rtec-reports-section-inputs,
.rtec-reports-submit-wrap {
    margin-bottom: 1.5em;
}
#rtec_fields_include_all,
#rtec_fields_include_all + label {
    display: inline-block;
    margin-top: .5em;
    margin-bottom: .25em;
}
.rtec-reports-dr-monthly,
.rtec-reports-dr-quarterly,
.rtec-reports-dr-custom {
    margin-top: .25em;
}
.rtec-reports-time-wrap > label {
    display: inline-block;
    min-width: 30px;
}

/* Report page layout: header, two columns */
.rtec-report-page-header {
    margin-bottom: 1.5em;
}
.rtec-report-back-wrap {
    margin: 0 0 1em 0;
}
.rtec-report-name-row {
    margin-bottom: 0.5em;
}
.rtec-report-name-row .rtec-input-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.rtec-report-title {
    margin: 0;
    font-size: 1.5em;
}
.rtec-report-label-input {
    width: 200px;
    margin: 0;
}
.rtec-report-edit-icon {
    position: relative;
    padding: 4px 8px;
    line-height: 1;
}
.rtec-report-edit-icon svg {
    display: block;
    width: 1em;
    height: 1em;
}
.rtec-report-download-wrap {
    margin: 0 0 1.5em 0;
}
.rtec-report-two-columns {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 24px;
    align-items: start;
}
@media screen and (max-width: 1200px) {
    .rtec-report-two-columns {
        grid-template-columns: 1fr;
    }
}
.rtec-report-settings-column {
    min-width: 0;
}
.rtec-report-settings-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rtec-report-settings-block {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 1.25em;
}
.rtec-report-settings-block__title {
    margin-top: 0;
    margin-bottom: 12px;
}
.rtec-report-settings-panel .rtec-reports-section {
    margin-bottom: 1.5em;
}
.rtec-report-settings-panel .rtec-reports-section:last-of-type {
    margin-bottom: 0;
}
.rtec-report-settings-actions {
    margin-top: 1.5em;
    padding-top: 1em;
    border-top: 1px solid #dcdcdc;
}
.rtec-report-settings-actions .button {
    margin-right: 8px;
}
.rtec-report-preview-column {
    min-width: 0;
}
.rtec-report-preview-panel {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 1.25em;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.rtec-report-preview-content.rtec-is-processing {
    position: relative;
    min-height: 120px;
}
.rtec-report-preview-count {
    margin-top: 0;
    margin-bottom: 1em;
}
.rtec-report-preview-loading,
.rtec-report-no-results {
    margin: 0;
    color: #646970;
}
.rtec-report-preview-table {
    margin: 0;
    table-layout: auto;
    width: max-content;
    min-width: 100%;
}
.rtec-report-preview-table th,
.rtec-report-preview-table td {
    max-width: 300px;
}

