<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --yellow: #fbcd5e;
  --blue: #041933;
  --red: #e5443c;
  --purple: #9655f1;
  --navy: #1b263b;
}

/* GLOBAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BASE LAYOUT */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: var(--navy);
  line-height: 1.6;
  padding: 2rem;
}

/* HEADINGS */
h1, h2, h3 {
  color: var(--navy);
  margin-bottom: 10px;
  padding-top: 15px
}

.section-header {
  color: var(--navy);
  font-weight: bold;
  margin-top: 2rem;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.25rem;
}

/* INPUTS &amp; TEXTAREAS */
input[type="text"],
textarea,
select {
  width: 100%;
  padding: 0.6rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--navy);
  border-radius: 6px;
  background-color: #fff;
  color: var(--navy);
}

.index-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
}

.index-wrapper h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;

}

.index-wrapper p {
  font-size: 1.1rem;
  color: var(--navy);
  line-height: auto;
  margin-bottom: 2rem;
}

.start-button {
  background-color: #041933;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.start-button:hover {
  background-color: var(--yellow);
  color: var(--navy);
}

body.index-page {
  background-color: #f9f9f9;
  margin-top: 4rem;

}


/* BUTTONS */
button {
  background-color: #041933;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  transition: background-color 0.2s ease-in-out;
}

button:hover {
  background-color: var(--navy);
}

/* CONTAINERS &amp; LAYOUT BLOCKS */
.container {
  max-width: 800px;
  margin: 0 auto;
}

/* TABS or STEP UI (OPTIONAL STYLING) */
.tab {
  padding: 0.75rem;
  background-color: var(--yellow);
  border-radius: 6px 6px 0 0;
  font-weight: bold;
  display: inline-block;
  margin-right: 0.5rem;
  cursor: pointer;
}

.tab.active {
  background-color: var(--red);
  color: white;
}

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
}




/* Global Navigation Bar */
.global-nav {
  background-color: #041933; /* Primary yellow */
  padding: 0.75rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: bold;
  color: #0d1b2a;
}

.global-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.global-nav a:hover {
  color: #fbcd5e; /* Bright blue hover */
}

.global-nav .pipe {
  color: #fff;
  opacity: 0.4;
}

.global-nav a,
.global-nav .pipe {
  margin-right: 0.25rem;
}

.logo {
  height: 50px;
  width: auto;  /* Maintains aspect ratio */
  margin-right: 1rem;
}

@media (max-width: 600px) {
  .global-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
   }




/* login*/


.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background-color: #f9f9f9;
  padding: 1rem;
}

.auth-box {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.auth-box h1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.auth-box input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--navy);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.auth-box .start-button {
  width: 100%;
}

/* Step wraspper */


.step-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 1rem;
  background-color: #f9f9f9;
}

.step-box {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 680px;
  width: 100%;
  text-align: center;
}

.step-box h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-subhead {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.step-box input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--navy);
  border-radius: 8px;
  font-family: inherit;
}

.step-box .start-button {
  width: 100%;
  background-color: #041933;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.step-box .start-button:hover {
  background-color: var(--yellow);
  color: var(--navy);
}


.checkbox-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.checkbox-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: var(--navy);
}

.checkbox-list input[type="checkbox"] {
  margin-top: 4px;
}

.checkbox-list label {
  flex: 1;
  cursor: pointer;
}

[contenteditable="true"] {
  padding: 0.1rem 0.3rem;
  border: 1px dashed transparent;
  border-radius: 4px;
  transition: border 0.2s ease;
}

[contenteditable="true"]:hover,
[contenteditable="true"]:focus {
  border: 1px dashed #041933);
  outline: none;
  background-color: #f9f9f9;
}


.editable-field {
  padding: 0.15rem 0.35rem;
  border: 1px dashed transparent;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: text;
  position: relative;
}

.editable-field:hover,
.editable-field:focus {
  border: 1px dashed #041933);
  background-color: #f9f9f9;
}

/* Optional: ✏️ icon as a background hint */
.editable-field::after {
  content: "✏️";
  font-size: 0.8rem;
  margin-left: 0.3rem;
  opacity: 0.4;
}


#searchInput {
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  width: 100%;
  max-width: 600px;
  font-size: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.message-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.message-table th,
.message-table td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  vertical-align: top;
  text-align: left;
}

.message-table th {
  background-color: #041933;
  color: white;
}

.preview-text {
  white-space: pre-wrap;
  max-height: 6em;
  overflow: hidden;
}

.full-text {
  white-space: pre-wrap;
  display: block;
  margin-top: 0.5rem;
}

.hidden {
  display: none;
}

.message-table button {
  margin-right: 0.5rem;
  padding: 0.4rem 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  background-color: var(--yellow);
  color: var(--navy);
  transition: background-color 0.2s ease;
}

.message-table button:hover {
  background-color: var(--navy);
  color: white;
}


.transform-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.transform-form select,
.transform-form button {
  font-size: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--navy);
  border-radius: 6px;
}

.result-box {
  margin-top: 2rem;
  text-align: center;
}

.result-box textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid var(--navy);
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: #fff;
  color: var(--navy);
}

.styled-list {
  list-style-type: disc;
  padding-left: 2rem;
}

.editable-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.editable-support-point {
  font-size: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--navy);
  border-radius: 6px;
}

.usage-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: auto;
  max-width: 600px;
  text-align: left;
}</pre></body></html>