<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.row {
            display: flex;
            flex-wrap: wrap;
            margin: -5px; /* Adjust margin to create gaps between columns */
        }

        .column {
            flex: 25%; /* Each column takes 25% of the row width */
            padding: 5px;
            box-sizing: border-box;
        }
</pre></body></html>