body {
    font-family: sans-serif;
    margin: 20px;
}
pre {
    white-space: pre-wrap;       /* preserves whitespace but allows wrapping */
    word-wrap: break-word;       /* breaks long words */
    overflow-wrap: break-word;   /* modern, preferred syntax */
}
.simple_desc{
    margin-left: 5px;    
    color: #f52824;
}
.site_version_suffix{
    font-style: normal;
    font-size: 0.85em;
    color: #888;
    margin-left: 4px;
}
.container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.column {
    flex: 1;
    min-width: 300px;
}
#result {
    background: #f4f4f4;
    padding: 10px;
    border: 1px solid #ccc;
    white-space: pre-wrap;
    min-height: 100px;
}
#toolbar {
    margin-bottom: 10px;
}
.CodeMirror {
    height: auto;
    border: 1px solid #ccc;
    font-size: 14px;
}

#editor-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

#code-panel,
#result-panel {
    flex: 1 1 48%;
    min-width: 300px;
}

#code-panel textarea {
    width: 100%;
    height: 300px;
}

.header{
    display: flex;
    justify-items: center;
    align-items: center;
    padding:10px;
    font-size: smaller;
    border-bottom:0.1em dashed #ccc;
}

.footer{
    padding:10px;
    font-size: smaller;
    border-top:0.1em dashed #ccc;
}

.bora-intro {
    font-style: italic;
    font-size: 1.5em;
    animation: fadeIn 2s ease-in-out;
    margin-top: 2em;
}

/**/
.toolbar{
    min-height: 32px;
    background: antiquewhite;
    display: flex;
    align-items: center;
}
.contact-section {
  font-family: sans-serif;
  line-height: 1.6;
  padding: 1em;
  max-width: 400px;
}

.contact-section h2 {
  font-size: 1.4em;
  margin-bottom: 0.5em;
}

.contact-section .fa,
.contact-section .fab {
  margin-right: 8px;
  color: #444;
}

.contact-section a {
  text-decoration: none;
  color: #007bff;
}

.contact-label {
  font-weight: bold;
}
/**/

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    #code-panel,
    #result-panel {
    flex-basis: 100%;
    }

    #code-panel textarea {
    height: 250px;
    }
}