<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  background-color: #ecf0f4;
  overflow-x: hidden;
}

/* 
html, body {
  max-width: 100%;
  overflow-x: hidden;
} */

/* 
div {
  box-sizing: border-box;
} */
/* 
.info-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
} */


/* Classes for info buttons with tooltips */
.layout-select-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  /* background-color: #333;
  color: #fff; */
  background-color: #f8f9fa;  /* Light gray background */
  color: #333;                /* Dark text */
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;

  position: absolute;
  z-index: 1;
  /* bottom: 125%; position above the icon */
  top: 50%;
  left: 130%; /* Pushed to the right of the icon */
  transform: translateY(-50%); /* Vertically centered */
  
  transition: opacity 0.2s;
  font-size: 0.8em;
  white-space: nowrap;
}

.tooltip-wrapper:hover .tooltip-text,
.tooltip-wrapper:focus-within .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.layout-info-button {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.2em;
  color: #007BFF;
  cursor: pointer;
}

.layout-info-button:hover,
.layout-info-button:focus {
  color: #0056b3;
}



.info-form-container {
    /* width: 100%; */
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    /* box-sizing: border-box; */
    /* border: 3px solid green; */
  }

h1, h2, h3, h4, p, url, li {
  font-weight: 600;
}

h1, h3, h4 {
  text-align: center;
}

p {
  font-size: 1rem;
}

/* 
.info-form-container h1 {
  text-align: center;
  font-size: 200%;
} */
/* 
.info-form-container h2 {
  margin-top: 2rem;
} */

/* 
.info-form-container h3 {
  text-align: center;
  font-size: 140%;
} */

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* margin-top: 10px; */
}

label {
  font-size: 1rem;
  font-weight: bold;
}

input, select {
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%;
  max-width: 400px;
}

select {
  appearance: auto;
}
/* 
.info-form-colors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: .5rem; 
  align-items: start;
  padding-left: 10px;
}

.info-form-colors label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  text-align: left;
  gap: 10px;;
} */

.page-guide-image-container {
  text-align: center;
}

.page-guide-image {
  max-width: 100%;
  height: auto;
  /* display: block; */
  /* margin: auto; */
  border-radius: 0.3rem;
}


/* Style for dropdowns */
select {
  appearance: auto;
}

.preview-boxes {
  display: flex;
  flex-direction: column;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  gap: 0.5rem;
}

.preview-box {
  height: 40px;
  border: 1px solid #ccc;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

input[type="color"] { 
  border: none;
  padding: 0;
  background: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.info-form-colors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem; 
  align-items: start;
  padding-left: 10px;
}

.color-picker-group {
  display: flex;
  flex-direction: column;
}

.color-picker-group input:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

.color-picker-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.color-picker-wrapper input[type="color"] {
  width: 2rem;   
  height: 2rem;
  border: none;
}

.color-picker-wrapper span {
  font-family: monospace;
  font-size: 0.9rem;
}


/* Ensure inputs align left inside the label */
/* .info-form-colors input[type="color"] {
  height: 2.2em;
  border: 1px solid #ccc;
  border-radius: 4px;
} */

/* 
.page-guide-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 0.3rem;
}

.info-form-container h2 {
  text-align: left;
}


.info-form-container h4 {
  text-align: center;
  font-size: 25px;
} */

.info-form input[type="email"] {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  font-size: 20px;
  width: 50%; 
}

.info-form input[type="text"] {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  font-size: 20px;
  width: 100%;
}

.info-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  font-size: 1rem;
  width: 100%;
}


/*  */
/* 
.info-form-container ul {
  padding-top: 10px;
  padding-bottom: 20px;
}

.info-form-container ul li {
  
  padding-top: 5px;
  padding-bottom: 10px;
  font-size: 20px;
}

.info-form-container p {
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin:0%;
}

.info-form-container h2 {
  text-align: left;
}

.info-form-container h3 {
  font-size: 35px;
} */

.info-button-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.info-form button {
  background-color:  #d76272; 
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 0.4rem;
  cursor: pointer;
  font-weight: 600;
  max-width:fit-content;
}

.info-form button:hover {
  background-color: #3a4152;
}

/* Style the font dropdown */
  /* #font-choice {
    font-size: 1rem;
    padding: 0.5rem;
    width: 100%;
    max-width: 300px;
    margin-top: 0.5rem;
  } */

  /* Make each option show in its own font */
  /* TODO doesn't seem to work */
  /* #font-choice option {
    font-family: inherit; /* Inherit from inline style, works in most browsers */
    /* font-size: 3rem; */
  /* } */ 

  /* Preview area for selected font */
  /* #font-preview {
    margin-top: 1rem;
    padding: 1rem;
    border: 2px solid #aaa;
    background-color: #fff;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 4px;
  } */

  
.styled-fieldset {
  border: 2px solid #ccc;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  background-color: #e0e3e9;
}

.styled-fieldset legend {
  background-color: #1d4260;
  border-radius: 0.5rem;
  padding: 0.3rem 0.75rem;
  color: #fff;
  /* font-weight: bold;
  font-size: 1.2rem;
  padding: 0 0.5rem;
  color: #333; */
}

fieldset &gt; *:not(legend) {
  margin-top: 0.5rem;
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 50%;
  
}

.layout-preview-container {
  display: none;
  margin-top: 1rem;
  text-align: center;
}

.layout-preview-image {
  max-width: 25%;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 0.5rem;
}


/* ************************* */
/* RESPONSIVE STUFF */
/* ************************* */
@media (max-width: 768px) {
   .info-form-container {
    padding: 0.5rem;
  }

  input, select {
    font-size: 0.95rem;
  }

.info-form-colors {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  gap: 1rem; 
  
  /* align-items: start;
  padding-left: 10px; */
}

 .color-picker-group {
    width: 100%;
    max-width: 400px;  /* ✅ Optional: gives it a nice readable width */
  }



/* 
  .info-form-container h3 {
    font-size: 25px;
  } */
/* 
  .info-form label {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  } */
/* 
  .info-form input,
  .info-form textarea,
  .info-form select {
    width: 100%;
    box-sizing: border-box;
  } */
/* 
  .color-picker-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
  } */

  /* #font-select {
  font-size: 16px;
  padding: 5px;
  } */
/* 
  #font-preview {
    margin-top: 20px;
    font-size: 24px;
    border: 1px solid #ccc;
    padding: 10px;
  } */

  
}
</pre></body></html>