/* ============================================================================
   BUG REPORT PAGE
   ============================================================================
   TrayJuice bug report form layout
   ============================================================================ */

.bug-report-section {
    max-width: none;
    margin: 0;
}

.bug-report-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bug-report-form .form-row {
    gap: 1rem;
}

.bug-report-form .form-group {
    min-width: 0;
    flex: 1 1 240px;
}

.bug-report-form .form-group.full-width {
    flex: 1 1 100%;
    min-width: 100%;
}

.form-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0.75rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(96, 165, 250, 0.2);
    text-align: left;
}

.bug-report-form > .form-section-title:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.form-optional {
    font-weight: 400;
    font-size: 0.8rem;
    color: #64748b;
}

.form-hint {
    font-size: 0.875rem;
    color: #94a3b8;
    text-align: left;
    margin: -0.25rem 0 0;
    line-height: 1.5;
}

.form-hint--footer {
    margin: 0.25rem 0 0;
}

.form-textarea--mono {
    font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .bug-report-form .form-group {
        flex: 1 1 100%;
        min-width: 100%;
    }
}
