/* Project readiness checker layout */
#readiness-checker form {
    margin-top: 1rem;
}

#readiness-checker fieldset {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
}

#readiness-checker label {
    display: block;
}

#readiness-checker input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* Diagnostic output display */
#diagnosticOutput {
    margin-top: 1rem;
    padding: 1rem;
    border-left: 4px solid #6dff8f;
}

#diagnosticOutput.error-output {
    border-left-color: #ff6d6d;
    color: #ffd6d6;
}

/* Debugging report display */
#debugging-methods code {
    color: #7CFF9B;
}

#debugging-methods pre {
    overflow-x: auto;
    padding: 1rem;
    border: 1px solid #2d8f4f;
    background-color: #08100b;
}
