html {
  --link-color: #3045af;
  --link-color-darker: #2136a1;
  --black: #0a0638;
  --gray: #282242;
  --grayer: #27253e;
  --copy-lighter: #394351;
  --light-gray: #69667f;
  --lighter-gray: #8d8b99;
  --blue: #00679E;
  --dark-blue: #2F3F90;
  --purple: #845FA1;
  --dark-purple: #72569B;
  --green: rgb(0, 129, 57);
  /* --font-sans: "Merriweather Sans", sans-serif; */
  --font-sans: "PT Serif", sans-serif;
  --font-system: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* --font-serif: "Lora", serif; */
  --font-serif: "PT Serif", serif;
  --mid-gray: #b5b5b5;
  --text-small: calc(15rem / 16);
  --text-tiny: calc(14rem / 16);
  --text-xs: calc(13rem / 16);
  --text-dark-gray: #3b3b3b;
  --border-color: rgba(0, 0, 0, 0.06);
  --letter-spacing: -0px;
  /* --letter-spacing: -0.2px; */
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-serif);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  color: var(--black);
}

p {
  font-size: 1rem;
}

a {
  color: var(--link-color);
  /* font-weight: bold; */
}

p a {
  font-weight: bold;
}


/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-family: var(--font-sans);
  font-weight: bold;
}

p {
  overflow-wrap: break-word;
  line-height: 1.65;
}

table {
  border-collapse: initial;
}

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

button {
  border: none;
  background-color: var(--link-color);
  font-family: var(--font-sans);
  font-weight: 700;
  color: white;
  border-radius: 2px;
  padding: .75rem 1rem;
  cursor: pointer;
}

h1 {
  font-size: 1.45rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.1rem;
}

input,
textarea {
  font-size: 1rem;
  border-radius: 4px;
  padding: .5rem .75rem;
  border: 1px solid #ccc;
}

textarea {
  resize: vertical;
  line-height: 1.65;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.45rem 1.75rem 0.45rem 0.75rem;
  background: url('/images/double-arrow.svg') no-repeat right center;
  background-size: 1.1rem;
  background-color: white;
}

form label {
  display: block;
}

form input[type="checkbox"]+label {
  display: inline-block;
}

.font-system {
  font-family: var(--font-system) !important;
}

.checkbox-container {
  margin: .7rem 0;
}

.checkbox-container label {
  font-size: var(--text-small);
  position: relative;
  bottom: 1px;
}

nav {
  position: fixed;
  z-index: 1002;
  background: #fafafa;
  width: 100%;
  border-bottom: 1px dashed #eee;
}

.text-sm {
  font-size: var(--text-small);
  /* line-height: inherit; */
}

.nav-container {
  width: 100%;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
  padding: 0 2rem;
  /* max-width: 1600px; */
  margin: 0 auto;
  height: 4rem;
}

footer.footer {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2rem;
  max-width: 1600px;
  margin: 0rem auto 0;
  font-size: var(--text-small);
  border-top: 1px dashed #eee;
  background-color: rgba(255, 255, 255, 0.5);
}

footer a {
  color: var(--gray);
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  font-size: 1.05rem;
}

footer a:hover {
  text-decoration: underline;
}

footer .project-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .project-info p {
  font-size: var(--text-small);
  color: var(--gray);
  font-style: normal;
}

footer .footer-links {
  display: flex;
  align-items: center;
  gap: 0 2.75rem;
}

footer .footer-links a {
  font-size: 1rem;
  margin: 0 .5rem;
  text-align: center;
}

footer .footer-links .email-address {
  /* font-weight: bold; */
  /* font-style: italic; */
  font-size: var(--text-small);
  color: var(--gray);
}

footer .footer-links svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  font-size: 1.2em;
  display: none;
}



.nav-container a {
  margin: 0 .65rem;
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-system);
  font-size: var(--text-small);
  font-weight: bold;
  letter-spacing: -.2px;
}

.nav-container button.logo-button img,
.nav-container a.logo-button img,
.hero-section a img {
  width: auto;
  height: 48px;
}

.nav-container a.primary-button img {
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
}

.create-container-inner {
  margin: 0 auto;
  width: 100%;
  display: flex;
  height: calc(100vh);
  overflow: hidden;
  /* padding: .5rem 0 8rem; */
}

.create-container h2 {
  margin-bottom: 1rem;
}

.card {
  width: 100%;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .02);
  color: var(--black);
  text-decoration: none;
  padding: 1.35rem;
  border: 1px solid #eee;
  border-radius: 4px;
  align-self: flex-start;
  transition: .15s;
  position: relative;
  background-color: white;
}

.lens-main {
  flex: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* or any ratio you prefer */
}

.lens-featured-image {
  margin-bottom: 1rem;
}

.lens-featured-image img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 180px;
}



.lens-content {
  padding: 0 1.5rem;
}

.lens-content>p {
  font-size: var(--text-small);
}

.quadrant-label>button.add-item {
  display: block;
  margin: 0 0.5rem;
  cursor: pointer;
  background-color: transparent;
  border: none;
  align-self: center;
  line-height: 1;
  background: #fafafa;
  border-radius: 100%;
  width: 1.75rem;
  height: 1.75rem;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--light-gray);
}

.control-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
  padding: .5rem;
  border-radius: 6px;
  background-color: #fafafa;
}

.secondary-link {
  width: auto !important;
  display: inline-block !important;
  border: none;
}

input#outputType {
  margin-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
}



/* Quadrants */

.quadrants-lens {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: calc(1000px + 5rem);
  margin: 2rem auto 0;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 14px 0px;
  background: white;
  animation: fadeInUpwards 0.25s ease-out forwards;
}

@keyframes lensFadeIn {
  from {
    opacity: 0.7;
    transform: scale(1.005);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.screen-container {
  /* height: calc(100vh - 4rem); */
}

.lens {
  margin: 0 auto;
  padding: 0;
  background: rgb(255, 255, 255, 0.15);
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 10%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0.65) 90%, rgba(255, 255, 255, 0) 100%); */
  /* animation: lensFadeIn 0.25s ease-out forwards; */
  /* opacity: 0.7;
  transform: scale(1.005); */
  height: calc(100vh - 4rem);
  display: flex;
  overflow: hidden;
  position: relative;
  flex: 1;
}

.lens-container {
  padding: 2.2rem 3rem;
  width: 100%;
  flex: 1;
  overflow: auto;
}

.sliding-sidebar {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 400px;
  background-color: #fafafa;
  padding-right: 0rem;
  padding-left: 0rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  border-right: 1px solid #eee;
  height: calc(100vh - 6.5rem);
  overflow-y: auto;
  height: initial;
  position: relative;
  transition: .2s ease margin, .2s ease transform;
}

.left-sidebar.hidden-sidebar {
  transform: translate(-400px);
  margin-left: -400px;
}

.right-sidebar.hidden-sidebar {
  transform: translate(400px);
  margin-right: -400px;
}

.create-container {
  /* padding: 0rem 1rem; */
  /* border: 1px solid #eee; */
  width: 100%;
  display: flex;
  flex-direction: column;
  /* box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04); */
  /* border-radius: 6px; */
  /* background-color: white; */
  /* margin: .55rem auto 0; */
  /* max-width: 1280px; */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 5%, rgba(255, 255, 255, .45) 20%, rgba(255, 255, 255, .65) 80%, rgba(255, 255, 255, 0.95) 95%, rgba(255, 255, 255, 0) 100%);
}

.lens h1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  line-height: 1.5;
}

.lens h1 a {
  flex-shrink: 0;
  font-size: 1.2em;
  transition: transform .1s ease-in-out;
}

.lens h1>svg {
  font-size: 1.25em;
  flex-shrink: 0;
}

.lens h1 a svg {
  font-size: 1.1em;
  color: var(--link-color);
}

.lens h1 a:hover {
  transform: scale(1.05);
}

.quadrants-label-row {
  display: grid;
  grid-template-columns: 3fr 2fr 3fr;
  /* justify-content: space-between; */
  font-size: var(--text-small);
}

.quadrants-label-row>.quadrant-label:last-of-type {
  justify-content: flex-end;
}

.quadrants-row {
  display: flex;
  align-items: center;
}


.axis-label {
  font-style: italic;
  font-size: var(--text-small);
  color: var(--lighter-gray);
  text-align: center;
}

.axis-label.rotated {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: .8;
}

.quadrants-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* grid-template-rows: 1fr 1fr; */
  padding: .35rem;
  /* gap: 4px; */
  width: 100%;
}

.quadrant {
  /* background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #eee; */
  padding: .75rem;
  font-size: var(--text-small);
  text-align: left;
  min-height: 100px;
  /* border-radius: 6px; */
}

.quadrant:first-of-type {
  border-right: 3px dashed #eee;
  border-bottom: 3px dashed #eee;
}

.quadrant:nth-of-type(2) {
  border-bottom: 3px dashed #eee;
}

.quadrant:nth-of-type(3) {
  border-right: 3px dashed #eee;
}



.quadrant h4 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: 10px;
}

.quadrant ul {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
}

.lens .lens-container ul {
  list-style-type: disc;
  list-style-position: outside;
  /* padding-left: 1.5rem; */
  padding-left: 0;
}

.lens .lens-container ul li {
  margin-bottom: 4px;
  /* margin-bottom: 0px; */
  /* padding: .6rem .9rem; */
  padding: .2rem .6rem .2rem;
  /* box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04); */
  border-radius: 3px;
  /* background: rgba(255, 255, 255, .65); */
  /* border: 1px solid #eee; */
  border: 1px solid transparent;
  line-height: 1.7;
  display: flex;
  gap: .5rem;
  /* align-items: center; */
  align-items: start;
  position: relative;
  font-size: var(--text-small);
  max-width: 50ch;
  /* min-width: 45ch; */
  cursor: default;
}

.lens .lens-container ul li::before {
  /* content: "•"; */
  /* Custom marker, can be any character or image */
  /* Space between the marker and the text */
  color: black;
  align-self: flex-start;
  color: #ccc;
  font-size: 1.5em;
  position: absolute;
  left: -10px;
  top: -4.5px;
  /* Color of the marker */
  /* Additional styling can be applied to match your design */
}

.lens-container ul li:hover,
.lens-container ul li.active {
  background-color: #fafafa;
  border: 1px solid #ddd;
}

.highlight {
  border: 1px solid #aaa !important;
  background-color: #fafafa !important;
}

.lens .lens-container .types-lens ul li {
  min-width: 44ch;
}

.lens ul li>div:first-child {
  width: 100%;
}

.lens-container ul li a {
  text-decoration: none;
  font-weight: 700;
}

.lens-container ul li a.nested-lenses {
  /* align-self: flex-start; */
  position: relative;
  top: 2px;
}

.lens ul a {
  text-decoration: none;
  color: var(--black);
  /* display: block; */
  cursor: pointer;
}

.lens a span.lens-count {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1.6rem;
  font-size: .95rem;
  /* Center the text vertically */
  border-radius: 50%;
  background-color: var(--link-color);
  font-family: var(--font-system);
  font-weight: 700;
  /* Choose the color you want */
  color: white;
  /* Text color */
  text-align: center;
  /* Center the text horizontally */
  margin-right: .25rem;
  text-decoration: none;
}

.quadrant-label {
  font-family: var(--font-sans);
  font-weight: bold;
  color: var(--black);
  margin: 0 1.1rem;
  display: flex;
  gap: .65rem;
  font-size: var(--text-small);
  align-items: center;
}

.quadrant-label img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}


/* Polarities */

.polarity-lens {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2rem 2.5rem;
  background: white url('https://integrallife.com/wp-content/uploads/2023/05/polarity-bg.svg') center no-repeat;
  background-size: 50%;
  border: none;
  margin: 1.5rem auto 1rem;
  min-height: 420px;
  max-width: calc(1000px + 5rem);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 14px 0px;
  animation: fadeInUpwards 0.25s ease-out forwards;
  /* background: white; */
}

.polarity-top,
.polarity-bottom {
  text-align: center;
  width: 100%;
  min-height: 50px;
}

.polarity-top {
  margin-bottom: 1rem;
}

.polarity-bottom {
  margin-top: 1.5rem;
}

.polarity-top h4,
.polarity-bottom h4 {
  font-size: 1.2rem;
  margin: 0;
}

.polarity-top p,
.polarity-bottom p,
.polarity-quadrant>p {
  font-size: var(--text-small);
  margin: 0;
  color: var(--lighter-gray);
  font-weight: normal;
  font-style: italic;
}

.polarity-quadrant>p {
  margin: .25rem 0;
}

/* .polarity-top p,
.polarity-bottom p {
  color: var(--black);
} */

.polarity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
}

.polarity-quadrant {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 150px;
}

.polarity-quadrant ul {
  font-size: var(--text-small);
  margin: 0;
  list-style: none;
  padding-left: 0;
}

/* .polarity-quadrant ul li {
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  padding: 10px 15px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  border-radius: 3px;
  border: 1px solid #eee;
  line-height: 1.6;
} */

.polarity-quadrant ul li {
  background: rgba(255, 255, 255, 0.35);
}

.polarity-quadrant ul li:last-child {
  /* border: none; */
}

.polarity-quadrant:first-child {
  text-align: left;
}

.polarity-quadrant:last-child {
  text-align: left;
}

.polarity-poles {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 1rem 0;
}

.polarity-pole {
  padding: .35rem 0rem;
  border: none;
  flex-grow: 1;
  flex-shrink: 0;
  background: transparent;
}

.polarity-pole h3 {
  margin: 0;
  font-size: 1.3rem;
}

.polarity-pole:nth-child(2) h3 {
  color: #fdb73a;
  text-align: left;
}

.polarity-pole:last-child h3 {
  color: #8281e0;
  text-align: right;
}

/* Context menu */

.context-menu-list {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid #ddd !important;
}

.context-menu-list li {
  padding: .5rem 1rem;
  font-family: var(--font-sans);
  font-size: var(--text-small);
  border-bottom: 1px solid #eee;
  color: var(--black);
}

.context-menu-list li:last-of-type {
  border-bottom: none;
}

.context-menu-list.custom-tooltip {
  max-width: 300px;
}

.context-menu-list.custom-tooltip li {
  text-align: center;
  font-family: var(--font-serif);
  color: #333 !important;
  font-size: var(--text-small);
  padding: .5rem 1.2rem;
}

.context-menu-list li:hover {
  background-color: #f1f1f1;
  color: var(--black);
}

.context-menu-list li.nested-lens-menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--text-small);
  border-bottom: 1px solid #eee;
}

.context-menu-list li.nested-lens-menu-item:last-child {
  border-bottom: none;
}

.context-menu-list li.nested-lens-menu-item svg {
  font-size: 1.8em;
  flex-shrink: 0;
}

.context-menu-list .delete-item {
  color: #ee3232;
}

.context-menu-list .delete-item:hover {
  color: #ee3232;
}

.custom-context-menu {
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  border-radius: 4px;
}

.custom-context-menu ul {
  list-style-type: none;
  padding-left: 0;
  padding-top: .25rem;
  padding-bottom: .25rem;
  border: 1px solid #eee;
}

.custom-context-menu ul li {
  transition: .2s;
}

.custom-context-menu ul li a {
  display: block;
  padding: .6rem 1.2rem;
  text-decoration: none;
  font-family: var(--font-sans);
  color: var(--black);
}

.custom-context-menu ul li:hover {
  background-color: #f1f1f1;
}

/* Nav panel */

#show-nav-panel svg {
  font-size: 1.4em;
  /* transform: rotate(-180deg); */
  transform: rotate(0deg);
}

#show-nav-panel.closed svg {
  transform: rotate(0deg);
}

#show-metadata-panel svg {
  font-size: 1.25em;
  flex-shrink: 0;
}

#show-metadata-panel {
  /* margin-left: .75rem; */
}

.lens-nav-items {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.visibility-container {
  display: flex;
  align-items: center;
  gap: .4rem;
  /* font-style: italic; */
  /* font-family: var(--font-serif); */
  /* color: var(--light-gray); */
}

/* .privacy-status-indicator {
  margin-left: .5rem;
} */

.visibility-container svg {
  flex-shrink: 0;
  font-size: 1.2em;
}

.nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 400px;
  overflow: auto;
  background: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  z-index: 1003;
  transform: translateX(-100%);
  transition: transform 0.15s ease-in-out;
}

#map-settings-panel {
  width: 600px;
}

#metadata-panel,
#comments-panel {
  transform: translateX(100%);
  left: unset;
  right: 0;

}

#metadata-panel {
  width: 460px;
}

#comments-panel {
  width: 560px;
  padding-top: 2rem;
  padding-bottom: 0;
}

#comments-panel .nav-panel-control button {
  background: transparent;
}

.nav-panel.show {
  transform: translateX(0) !important;
}


#close-nav-panel {
  display: block;
}

main.info-container {
  margin: 1.5rem auto;
  max-width: 640px;
  padding: 0 1rem;
}

main.login-container h1 {
  margin-bottom: .5rem;
}

.login-form-container {
  margin-top: 3rem;
}

.login-form-container h2 {
  margin-bottom: .5rem;
  font-size: 1.6rem;
}

.login-form-container form {
  margin-top: 1rem;
}

.login-form-container form>button {
  margin: 1rem 0 1.5rem;
}

.login-form-container form label {
  margin-top: .65rem;
}

.login-form-container form>button,
.login-form-container form input {
  width: 100%;
}

.user-navigation {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.primary-button {
  /* border: 1px solid var(--link-color-darker); */
  background-color: var(--link-color);
  font-family: var(--font-sans);
  font-weight: 700;
  color: white;
  /* border-radius: 2px;
  padding: .75rem 1rem; */
  cursor: pointer;
  display: block;
  text-decoration: none;
  text-align: center;
  transition: .1s;
  width: fit-content;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: var(--text-small);
}

.shiny-button {
  position: relative;
  overflow: hidden;
}

.shiny-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 25%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.1) 75%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 6.5s infinite;
}

@keyframes shine {

  0%,
  61.54% {
    left: -75%;
  }

  100% {
    left: 150%;
  }
}

.primary-button:hover {
  background-color: var(--link-color-darker);
}

.primary-button:active {
  transform: scale(.985);
}

.primary-button.large {
  font-size: 1rem;
  border-radius: 4px;
  /* width: 100%; */
  display: flex;
  gap: .5rem;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: .75rem 1.1rem;
  font-family: var(--font-system);
}

.primary-button.large:disabled {
  background-color: var(--lighter-gray);
}

.primary-button.large:disabled:active {
  transform: none;
}

.primary-button svg {
  flex-shrink: 0;
}

.secondary-button {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  gap: .5rem;
  border-radius: 5px;
  transition: .1s;
  border: 1px solid #eee;
  background: white;
  color: var(--black);
  padding: .5rem .75rem;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: .1s;
  font-size: var(--text-small);
  font-weight: bold;
}

.secondary-button:hover {
  background-color: #fafafa;
}

.secondary-button.large {
  /* width: 100%; */
  font-size: 1rem;
  padding: .65rem .7rem;
  text-align: center;
  justify-content: center;
}

.secondary-button .loading-indicator.not-fixed {
  width: fit-content;
}

.secondary-button .loading-indicator.not-fixed svg {
  width: 1.4em;
  margin: 0;
}

.secondary-button.light {
  color: var(--copy-lighter);
}

.nav-container a.secondary-button img {
  width: 20px;
  height: 20px;
}

.danger-button {
  display: flex;
  align-items: center;
  padding: 0;
  gap: .5rem;
  border-radius: 6px;
  transition: .1s;
  border: 1px solid #cd1818;
  background: white;
  color: #cd1818;
  padding: .5rem .75rem;
  text-decoration: none;
  font-family: var(--font-sans);
}

.danger-button.large {
  /* border: 1px solid #cd1818; */
  /* background: #e22a29; */
  /* color: #cd1818; */
  padding: 0.9rem 0.75rem;
  width: 100%;
  font-size: 1.25rem;
  /* color: white; */
  justify-content: center;
  font-family: var(--font-sans);
}



.secondary-button:hover {
  color: var(--black);
}

.secondary-button.danger-button:hover {
  color: #cd1818;
}

.nav-panel-control {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  color: var(--grayer);
}

.nav-panel-control button,
.nav-panel-control button {
  border: none;
  background-color: white;
}

.lens-tree-container ul {
  padding-left: .75rem;
  list-style: none;
}

.lens-tree-container>ul {
  padding-left: 1rem;
}

.nav-panel>ul {
  padding-left: 0;
}

.lens-tree-container li,
.dragging-stack-item {
  list-style-type: none;
}

.dragging-stack-item {
  max-width: 320px;
  border: 1px solid #eee;
  border-radius: 4px;
  background-color: white !important;
}

.dragging-stack-item ul {
  list-style: none;
  display: none;
}

.nav-panel a,
.lens-tree-container a,
.dragging-stack-item a {
  text-decoration: none;
  padding: .75rem;
  color: var(--black);
  display: flex;
  gap: .75rem;
  align-items: center;
  border-bottom: 1px solid #eee;
  font-size: var(--text-tiny);

  /* font-family: var(--font-sans); */
}

.nav-panel a svg,
.lens-tree-container a svg,
.dragging-stack-item a svg {
  font-size: 1.6em;
  flex-shrink: 0;
  position: relative;
}

.nav-panel a:hover,
.lens-tree-container a:hover {
  background-color: #f1f1f1;
}

.nav-panel>ul>li>a {
  font-size: 1.05rem;
  /* font-family: var(--font-sans); */
}



.home-container {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 1rem 2rem;
  background: white;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  align-self: flex-start;
  position: relative;
}

.home-container.settings {
  padding: 2rem 2rem;
  margin-bottom: 1.5rem;
}

.error-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.home-user-info {
  flex-shrink: 0;
  width: 100%;
  border-radius: 4px;
  align-self: start;
}

.home-user-info form {
  width: 100%;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  border-bottom: 1px solid #eee;
}

.home-user-info form .form-group {
  margin-bottom: 1.2rem;
}

.home-user-info .admin-link {
  text-align: center;
  justify-content: center;
}

.home-user-info form input,
.home-user-info form textarea {
  width: 100%;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: .5rem;
}

.home-maps {
  width: 100%;
}

.home-maps.animated {
  opacity: .9;
  animation: fadeInUpwards 0.3s ease-in-out;
}

.home-container h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.home-container>p {
  line-height: 1.65;
}

/* .home-container:not(.settings) .primary-button {
  width: calc(100% - 2rem);
  margin: 1.5rem auto 0;
} */

a.logout-link {
  display: block;
  margin: 1.5rem 0 .75rem;
  /* text-align: center; */
  color: var(--light-gray);
  text-decoration: none;
}

a.logout-link:hover {
  text-decoration: underline;
}

.home-container h1 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.create-container form button.secondary-button {
  margin-top: 1rem;
}

.create-container form button[type="submit"] {
  display: block;
  width: 100%;
  /* margin-top: 3.5rem; */
}

.login-container {
  display: grid;
  grid-template-columns: 1fr;
  height: calc(100vh);
}

.login-container.show-hero {
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  gap: 0rem 2rem;
}

.login-container.show-hero .forms-section {
  border-left: none;
}

.forms-section,
.hero-section {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: .25rem 1rem;
}

.hero-section {
  justify-content: space-between;
  display: none;
}

.show-hero .hero-section {
  display: flex;
  justify-content: center;
  align-self: center;
}

.hero-section a {
  align-self: flex-start;
}

.hero-section .footer-links {
  align-self: flex-start;
}

.hero-section .footer-links a {
  color: var(--lighter-gray);
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  margin: 0 1rem 0 0;
}

.hero-section .footer-links a:hover {
  text-decoration: underline;
}

.form-group label {
  margin-bottom: .5rem;
}

.forms-section .form-group {
  width: 100%;
}

.forms-section .form-group input {
  width: 100%;
}

.forms-section {
  background-color: #fdfdfd;
  border-left: 1px solid #f1f1f1;
}

.hero-content {
  max-width: 650px;
  width: 100%;
  padding: 2rem 3rem;
}

.login-form-container {
  max-width: 400px;
  width: 100%;
}

#auth-modal .login-form-container {
  max-width: 100%;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.65;
}

.create-container form .admin-prompt textarea {
  font-family: monospace;
}

.create-container form h3 {
  font-size: 1.05rem;
  margin-bottom: 0rem;
  font-family: var(--font-system);
}



.admin-prompt {
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  display: none;
}

.admin-prompt.active {
  display: block;
}

/* .create-container form input,
.create-container form textarea {
  min-width: 400px;
  width: 100%;
} */

.main-create-column input,
.main-create-column textarea {
  min-width: 400px;
  max-width: 600px;
  width: 100%;
}

#userConfigurationSection {
  margin-top: 1rem;
}

.create-container form textarea[name="lensName"] {
  margin-top: .75rem;
}

.create-container form label {
  margin-bottom: .25rem;
}

.user-configuration-options h2 {
  margin-bottom: 0;
}


.lens-type {
  display: flex;
  /* flex-direction: column; */
  gap: 0.35rem;
  padding: .85rem 1.1rem .85rem .9rem;
  border: 1px solid #eee;
  border-radius: 4px;
  width: fit-content;
  color: var(--light-gray);
  cursor: pointer;
  text-align: left;
  width: fit-content;
  border: 1px solid transparent;
  /* transition: all .15s; */
  background: transparent;
  align-items: flex-start;
  justify-content: center;
  /* flex-basis: 25%; */
}

.lens-type:hover {
  background-color: #fafafa;
}

.lens-type h4 {
  font-size: 1rem;
}

.lens-type p {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: var(--text-xs);
  color: #555 !important;
  margin-top: .15rem;
  line-height: 1.5;
}

.lens-type svg {
  font-size: 1.5rem;
  color: #555;
  flex-shrink: 0;
  /* cursor: help; */
  /* margin-bottom: .5rem; */
}

.lens-type.active {
  border: 1px solid #eaeaea;
  color: var(--black);
  color: var(--lens-type-color);
  color: var(--black);
  cursor: default;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, .05);
}

.lens-type.active svg {
  color: var(--black);
}

.create-container form .lens-type-picker-container button.secondary-button {
  margin-top: 0;
  min-width: 150px;
}

.mode-switcher {
  display: flex;
  margin-top: 1rem;
}

/* Hide the default radio input */
.mode-switcher input[type="radio"] {
  display: none;
  width: 100%;
}

/* Style for the labels to resemble iOS tabs */
.mode-switcher label {
  display: block;
  padding: .75rem 1.5rem;
  text-align: center;
  margin: 0;
  width: 100%;
  border-radius: 0 4px 4px 0;
  border: 1px solid #eee;
  cursor: pointer;
  font-family: var(--font-sans);
  color: #555;
}


.mode-switcher input[type="radio"]:checked+label {
  background-color: #f1f1f1;
  color: var(--black);
}

/* Add some spacing between the labels/tabs */
.mode-switcher label:not(:last-child) {
  /* Spacing between labels/tabs */
  border-radius: 4px 0 0 4px;
  border-right: none;
}

/* Hover effect for labels to provide feedback */
.mode-switcher label:hover {
  background-color: #f2f2f2;
  /* Slightly darker grey on hover */
}

.user-config-option-container {
  margin: 0;
  border-bottom: 1px solid #eee;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 0;
  cursor: pointer;
  /* transition: .1s; */
}

.accordion-title.open {
  padding: .9rem 0 .5rem;
}

.accordion-title~* {
  margin: .5rem 0;
  display: none;
}

.accordion-title.open~* {
  display: block;
}

.accordion-title>div {
  transition: .1s;
  flex-shrink: 0;
}

.accordion-title.open>div {
  transform: rotate(180deg);
}

.accordion-title svg {
  font-size: 1.4rem;
  padding: .1rem;
  color: #bbb;
  transform: rotate(90deg);
}

.user-configuration-options {
  width: 100%;
  padding: 0rem 0rem;
}

select {
  border: 1px solid #ccc;
  border-radius: 4px;
}

.list-container .list-card {
  display: flex;
  /* padding: 1.5rem 0; */
  border-bottom: 1px solid #eee;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  position: relative;
}

.list-container .list-card:last-child {
  /* border-bottom: none; */
}

.list-container .list-card:first-child {
  /* border-top: 1px solid #eee; */
}

.list-container .list-card a {
  display: block;
  text-decoration: none;
  color: var(--black);
  padding: 1.75rem 6rem 1.75rem 1.25rem;
  width: 100%;
}

.list-container .list-card a:hover {
  background-color: #fafafa;
}

.list-container .list-card .move-btn {
  flex-shrink: 0;
}

.list-container .list-card p {
  font-style: normal;
  font-size: var(--text-small);
}

.list-container .list-card .secondary-button {
  font-size: 2rem;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(-0%, -50%);
}

.list-container .list-card h3 {
  margin-bottom: .25rem;
  line-height: 1.65;
}

.list-container .list-card .lens-count {
  color: #555;
  display: inline-block;
}

.lens-header-container {
  max-width: calc(1000px + 5rem);
  margin: 0 auto;
}

.lens-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.lens-header a.recreate-link {
  flex-shrink: 0;
  display: flex;
  gap: .35rem;
  align-items: center;
}

.lens-header .lens-owner-controls {
  flex-shrink: 0;
  display: flex;
  /* align-items: center; */
  gap: .25rem;
}

.lens-header a.recreate-link svg {
  flex-shrink: 0;
  position: relative;
  top: 1px;
}

.subtext {
  font-size: var(--text-tiny);
  margin-bottom: .25rem;
  /* font-style: italic; */
}

.subtext a {
  color: var(--link-color);
  font-weight: 700;
  text-decoration: none;
  transition: .15s;
}

.subtext a:hover {
  text-decoration: underline;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dashoffset: -125px;
  }
}

.loading-indicator {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: none;
}

.loading-indicator svg {
  width: 2.75em;
  transform-origin: center;
  animation: rotate 1.25s linear infinite;
}

.loading-indicator circle {
  fill: none;
  stroke: #ccc;
  stroke-width: 3;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}


/* Levels */

.levels-lens {
  padding: 1rem 0;
  width: 100%;
  margin-top: 1.5rem;
  animation: fadeInUpwards 0.25s ease-out forwards;
}

.levels-container {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  position: relative;
}

.level-box {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border: 1px solid #eee;
  padding: 0 1.5rem;
  border-radius: 6px;
  box-shadow: 9px -9px 14px 0 rgba(0, 0, 0, .02);
  cursor: pointer;
  transition: .15s;
  background-color: white;
}

.levels-overlay {
  position: absolute;
  inset: 0;
  z-index: 1000;
  background-color: white;
  border-radius: 6px;
  border: 1px solid #eee;
  padding: 2rem 1.5rem 2rem;
  overflow: auto;
  scrollbar-gutter: stable both-edges;
}

.levels-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-right: .5rem;
}

.overlay-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: -1rem;
}

.overlay-actions button.icon-button {}

.levels-overlay-header .close-overlay {
  /* border: none;
  background-color: white;
  padding: 1rem; */
  /* margin-top: -1rem; */
  margin-right: -1rem;
  font-size: 1.1rem;
  color: #555;
}

.levels-overlay .overlay-content {
  padding-left: 0;
}

.level-box.levelPassive {
  opacity: .30;
}

.level-box.levelHovered {
  background-color: rgba(0, 0, 0, .02);
  border: 1px solid #d7d7d7;

}

.level-box h4 {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.admin-container {
  max-width: 1000px;
}

.admin-container h2,
.lens-configurations h2 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.admin-container form.admin-create-form {
  width: 100%;
  padding-bottom: 0.5rem;
}

.admin-container form .form-group:not(:last-child) {
  margin-bottom: 1.5rem;
}

.admin-container form .form-group label {
  margin-bottom: .25rem;
}

.admin-container .form-groups {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.config-form-group {
  display: flex;
  align-self: start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.config-form-group input {
  align-self: flex-start;
}

.prompts-container {
  padding: 0rem 0;
}

.prompts-section-container {
  padding: 2rem 0;
}

.prompts-section-container:not(:last-child) {
  border-bottom: 1px solid #eee;
}

form.prompt-container {
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

form.prompt-container:last-child {
  border-bottom: none;
}

.prompt-container textarea {
  width: 100%;
}

.lens-prompts-section-container {
  padding: 1.5rem 0;
  border-top: 2px solid #eee;
}

.lens-prompts-section-container:first-of-type {
  border-top: none;
}

.create-prompt-container {
  padding: 1.35rem 1.35rem;
  background-color: #fafafa;
  border-radius: 4px;
  border-bottom: 3px dashed #eee;
  border: 1px solid var(--border-color);
  padding-bottom: 2rem;
  margin-bottom: .5rem;
  margin-top: 2rem;
}

.create-prompt-container h3 {
  margin-bottom: 1.25rem;
}

.admin-container h1 {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.admin-container h2,
.admin-container h3,
.lens-configurations h2,
.lens-configurations h3 {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.lens-configurations h3 svg {
  font-size: 1.6rem;
}

.option-pair {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-left: .75rem;
}

.create-form-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeInUpwards 0.25s ease-out forwards;
}

.main-create-column {
  /* padding-left: 3rem; */
  border-left: 1px solid #eee;
  width: 100%;
  overflow: auto;
  /* max-width: 700px; */
  padding: 6.5rem 2rem 6rem;
}

.minimal-create-container {
  position: relative;
}

.minimal-create-container .main-create-column {
  /* padding-left: 0rem; */
  border-left: none;
  width: 100%;
  /* max-width: 700px; */
  margin: 0 auto;
}

.create-form-container .lens-type-picker-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* gap: .25rem; */
  width: 100%;
}

.create-admin-section {
  width: 840px;
  margin: 4rem auto 2rem;
  display: none;
}

.create-admin-section textarea {
  width: 100%;
}



#loading-state {
  display: flex;
  flex-direction: column;
  gap: 7rem 0;
  max-width: 1200px;
  margin: 6rem auto 0;
  width: 100%;
  overflow: hidden;
}

.loading-indicator-container,
.loading-data-container,
.loading-quote-container {
  display: flex;
  width: 100%;
  align-items: center;
}

.loading-indicator-container {
  justify-content: flex-end;
}

.loading-indicator-container p {
  font-style: italic;
  color: var(--light-gray);
}

.loading-data-container {
  justify-content: center;
  gap: 1.5rem;
}

.loading-data-container p {
  font-size: 1rem;
  max-width: 60ch;
  white-space: break-spaces;
}

.loading-data-container svg {
  font-size: 2.75rem;
}


.loading-quote-container p {
  color: #777;
  max-width: 500px;
  font-style: italic;
  line-height: 1.6;
  font-size: 1.1rem;
}

.loading-indicator-container .loading-indicator {
  position: relative;
  bottom: auto;
  right: auto;
  display: block;
  margin-left: 1rem;
}

.loading-indicator-container .loading-indicator svg {
  width: 1.75em;
  transform-origin: center;
  animation: rotate 1.25s linear infinite;
}

#create-form-state {
  display: block;
  width: 100%;
}

#loading-state {
  display: none;
}

#create-admin-section {
  position: fixed;
  bottom: 0;
  left: 0;
}

.types-lens {
  padding: 1rem 0;
  width: 100%;
  max-width: 2000px;
  margin: 2.5rem auto 2rem;
  overflow-x: auto;
  position: relative;
  animation: fadeInUpwards 0.25s ease-out forwards;
  /* border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 14px 0px;
  background: white; */
}

.types-lens td {
  cursor: grab;
  vertical-align: top;
}


.types-lens ul {
  padding-left: 0;
}

.types-lens th:first-of-type {
  min-width: 8rem;
  border-left: none;
  border-right: 2px dashed #eee;
  border-bottom: 2px dashed #eee;

}

.types-lens td:first-of-type {
  font-family: var(--font-sans);
  /* font-style: italic; */
  font-weight: 700;
  /* font-size: 1.1rem; */
  border-left: none;
  border-right: 2px dashed #eee;
  border-bottom: 2px dashed #eee;
  min-width: 175px;
}

.types-lens th,
.types-lens td {
  padding: .7rem;
  border-right: 2px dashed #eee;
  border-bottom: 2px dashed #eee;
}

.types-lens td {
  padding-left: .2rem;
}

.types-lens th {
  text-align: left;
  font-family: var(--font-sans);
  min-width: 300px;
  padding-bottom: .45rem;
  padding-top: .45rem;
  border-right: 2px dashed #eee;
  border-bottom: 2px dashed #eee;
  font-size: 1rem;
  cursor: default;
}

.types-lens ul li {
  font-size: var(--text-small);
}

.types-lens th:first-child,
.types-lens td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background-color: white;
  vertical-align: middle;
  max-width: 30ch;
}

#scrollLeft,
#scrollRight {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1003;
}

#scrollLeft {
  left: 0;
}

#scrollRight {
  right: 0;
}

.nav-panel .form-group textarea,
.nav-panel .form-group input[type="text"] {
  width: 100%;
}

.nav-panel .form-group input[type="checkbox"] {
  margin-right: .15rem;
}

.nav-panel .form-group h3 {
  margin-bottom: .75rem;
}


#metadata-panel.nav-panel .form-group h3 {
  margin-bottom: 1rem;
}

.nav-panel .form-group h3+p {
  /* font-size: var(--text-small); */
  margin-top: -0.65rem;
  line-height: 1.6;
  margin-bottom: .45rem;
}

.nav-panel h2 {
  margin-bottom: 1.5rem;
}

.nav-panel .form-group {
  padding-bottom: 1.5rem;
  margin-bottom: .5rem;
}

.nav-panel .form-group.reader-view {
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid #eee;
}

.nav-panel form button[type="submit"] {
  width: 100%;
}

.nav-panel .form-group label {
  position: relative;
  bottom: 1px;
  font-size: var(--text-small);
}

#metadata-panel h2 {
  display: flex;
  align-items: center;
  gap: .5rem;
}

#metadata-panel h2 svg {
  flex-shrink: 0;
  color: var(--lighter-gray);
}



/* .ellipsis {
  display: none;
} */

.hidden-content {
  display: none;
}

.lens-description p {
  font-size: 1rem;
  line-height: 1.65;
  white-space: pre-line;
  max-width: 78ch;
  width: 100%;
}

a.read-more-toggle,
a.read-more-toggle-hide {
  font-style: italic;
  color: var(--link-color);
  text-decoration: none;
  font-weight: 700;
}



a.read-more-toggle:hover,
a.read-more-toggle-hide:hover {
  text-decoration: underline;
}

#outputType-container {
  margin-left: auto;
  color: var(--black);
  border: 1px solid #eee;
  border-radius: 9999px;
  padding: 0.3rem 1rem;
  /* font-style: italic; */
  flex-shrink: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(89deg, rgb(255 255 255) 0%, rgb(244 244 244) 100%);
  display: none;
}

#outputType-container p {
  font-size: var(--text-small);
  color: var(--gray);
}

.nav-container a.logo-button {
  /* padding: 0; */
  /* margin-right: 1rem; */
  margin-left: 0rem;
  flex-shrink: 0;
}

.logo-button svg {
  color: var(--gray);
}

.context-menu-button {
  background-color: var(--link-color) !important;
  color: white !important;
}

.register-benefits {
  margin-top: 1rem;
}

.register-benefits ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}

.register-benefits ul li {
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  /* font-style: italic; */
}

.register-benefits ul li svg {
  color: #0aa60a;
  flex-shrink: 0;
  font-size: 1.75rem;
}

div.manage-subscription-container {
  margin: 2rem 0;
  padding-bottom: 2rem;
  border-bottom: 3px dashed #eee;
}

@keyframes alertFadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alerts {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1004;
}

.alerts .alert {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #eee;
  border-radius: 6px;
  padding: .6rem .8rem;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.04);
  font-family: var(--font-sans);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  animation: alertFadeIn 0.25s ease-out forwards;
  opacity: 0;
  transform: translateY(-15px);
}

.alerts .alert svg {
  font-size: 1.25em;
  display: none;
}

.alerts .alert.alert-success svg.success {
  display: block;
  color: #008139;
}

.alerts .alert.alert-error svg.error {
  display: block;
  color: #BF2B45;
}

.env-banner {
  width: 100%;
  font-size: var(--text-small);
  display: flex;
  justify-content: center;
  padding: .5rem;
  background-color: var(--black);
  color: white;
}

.env-banner a {
  color: white;
  font-weight: 700;
  font-style: italic;
}

.form-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* .bg-crosses {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33'%3E%3Cpath d='M0 0h2.25Zm0 0v2.25Zm33 33h-2.25Zm0 0v-2.25Zm0-33h-2.25Zm0 0v2.25ZM0 33v-2.25Zm0 0h2.25Z' stroke-opacity='.065' stroke-width='1.1' stroke='%23000'/%3E%3C/svg%3E")
} */

.bg-crosses {
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)), url(/images/context-background.jpg);
}


.config-group-picker-container {
  padding: 0rem 0rem 1.5rem 0;
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-basis: 55%;
  gap: .5rem;
  /* max-height: calc(100vh - 23rem); */
  overflow-y: auto;
}

.config-group-option {
  padding: 0.65rem 1.25rem 0.65rem 1rem;
  border-radius: 4px;
  color: var(--grayer);
  cursor: pointer;
  text-align: left;
  transition: all .15s;
  background: transparent;
  margin: 0 !important;
  border: 1px solid transparent;
  /* border-bottom: 3px solid transparent; */
}

.config-group-option:hover {
  background-color: #f9f9f9;
}

.config-group-option h3 {
  font-weight: normal;
  font-family: var(--font-serif) !important;
  font-size: var(--text-small) !important;
  display: flex;
  align-items: center;
  gap: .5rem;

}

.config-group-option h3 span {
  flex-shrink: 0;
  margin-left: auto;
  transition: all .2s;
  font-size: 1.2em;
}

.config-group-option:hover h3 span {
  visibility: initial;
}

.config-group-option h3 svg {
  color: #bbb;
}

.config-group-option.active {
  background-color: #ffffff;
  border: 1px solid #dadada;
  /* border-bottom: 3px solid #e6e6e6; */
  color: var(--black);
  cursor: default;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, .05);
}

.config-group-option.active h3 {
  color: var(--black);
}

.top-page-form input[type="text"],
.top-page-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.top-page-form textarea {
  font-size: var(--text-small);
}

.top-page-form input[name="title"] {
  font-size: 1.1rem;
  font-family: var(--font-sans);
}

.top-page-form fieldset {
  border: none;
  padding: 0;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.top-page-form fieldset>div {
  display: flex;
  gap: 1rem;
}

.top-page-form legend {
  margin-bottom: .35rem;
}

#templateGroupForm {
  margin-bottom: 3rem;
}

.lens ul li>.annotation {
  /* position: absolute;
  top: -.4rem;
  right: -.8rem; */
  width: fit-content;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: .5rem;
  align-self: start;
  position: relative;
  top: 2px;
}

.lens ul li>.annotation svg {
  font-size: 1.6rem;
  color: #ffbe23;
}

.lens ul li .textBullet-text-container {
  width: 100%;
}

.annotation-icon {
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}

.annotation-icon svg {
  font-size: 1.5em !important;
  color: #ffbe23;
}

.lens ul li>.annotation {
  display: block;
}

.tippy-box[data-theme~='annotation'] {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  color: var(--black);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .3);
  width: 100%;
  max-width: 55ch !important;
  min-width: 55ch;
}

.tippy-box[data-theme~='white-tooltip'] {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .3);
  background-color: #fff;
  border: 1px solid #ddd;
  color: var(--black);
  border-radius: 4px;
  font-size: var(--text-small);
  padding: .5rem .5rem;
  line-height: 1.5;
}

.tippy-content {
  font-family: var(--font-sans);
}

.tippy-box[data-theme~='annotation'] .tippy-content {
  position: relative;
  padding: 0.5rem .55rem;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: var(--text-small);
}

.tippy-content textarea {
  width: 100%;
  min-width: 360px;
  line-height: 1.5;
}

.tippy-box[data-theme~='annotation'] .tippy-content p {
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.5;
  white-space: pre-line;
  max-height: 280px;
  overflow-y: auto;
}

.add-something-button {
  width: fit-content;
  margin: 0 auto;
  background: transparent;
  color: var(--light-gray);
  font-size: var(--text-tiny);
  font-family: var(--font-serif);
  font-weight: normal;
  /* font-style: italic; */
  transition: .1s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.add-something-button:hover {
  color: var(--gray);
}

div[contenteditable]:empty::before {
  content: "Start typing...";
  color: #a9a9a9;
  /* Light gray color, similar to default placeholder color */
  display: block;
  /* Make it block so it takes up the whole space */
}

div.project-section-description[contenteditable]:empty::before {
  content: "Add section context...";
}

.config-group-section {
  /* margin-bottom: 1.25rem;
  padding-bottom: 1.25rem; */
  /* border-bottom: 1px solid #eee; */
}

.config-group-section:last-child {
  border-bottom: none;
}

.create-sections-container {
  display: flex;
  height: calc(100vh);
  overflow: hidden;
}

.create-container .template-group-title {
  padding-right: 1rem;
}

.create-container .template-group-title h3 {
  font-size: var(--text-small);
  /* display: flex;
  align-items: center; */
}

.create-container .template-group-title h3 img {
  margin-right: 9px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  bottom: 1px;
  width: 22px;
  height: 22px;
}

.create-container .template-group-title h3 span {
  font-size: .9em;
  color: rgb(200, 200, 200);
  border-radius: 9999px;
  margin-left: 0.3rem;
}

.create-header {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  margin-bottom: 2rem;
}

.create-header h1 {
  flex-shrink: 0;
  font-size: 1.15rem;
}

.create-header a {
  font-size: 1.2rem;
  font-style: italic;
  font-family: var(--font-serif);
  margin-left: 1rem;
  color: var(--lighter-gray);
  text-decoration: none;
  transition: 0s;
  font-weight: bold;
}

.create-header a:hover {
  color: var(--link-color);
  text-decoration: underline;
  transition: .1s;
}

.create-page-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

button.nav-submit-button {
  max-width: 340px;
  margin-left: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  padding-right: 3rem;
  padding-left: 3rem;
}

h3#inputTitle {
  font-size: 1.05rem;
  max-width: 600px;
}

.form-group-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.config-group-buttons {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  gap: .75rem;
  flex-shrink: 0;
}

.config-group-buttons button {
  font-size: 1rem;
}

.search-box-container {
  position: relative;
  width: 100%;
}

.secondary-create-column .search-input {
  width: 100%;
}

#clear-search {
  position: absolute;
  right: 1rem;
  top: 51%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.75rem;
  padding: 0;
  color: #aaa;
  font-family: var(--font-serif);
}

.lens-nav-map-buttons {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

fieldset {
  border: none;
  padding: 0;
}

.form-group {
  /* margin: 0; */
  padding: 0;
}

.radio-options {
  /* margin-top: 1.5rem; */
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #555;
  /* Adjust as needed */
}

.radio-option label {
  display: flex;
  align-items: center;
  width: 100%;
}

.radio-option label h4 {
  font-size: var(--text-small);
}

.radio-svg {
  /* Style for the SVG container, add width, height, etc. */
  margin-right: 1rem;
  font-size: 1.5em;
  /* Adjust as needed */
}

.radio-content {
  flex-grow: 1;
}

.radio-input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;

}

.radio-input+label {
  color: #777;
  cursor: pointer;
  padding: .75rem 1rem .5rem;
  border: 1px solid #eee;
  border-radius: 3px;
}

.radio-input:checked+label {
  /* Style when the radio is checked, like changing background color, etc. */
  border: 1px solid #dadada;
  color: var(--black);
  cursor: default;
  background: #f9f9f9;
}

#projectForm h3+.subtext {
  margin-bottom: 1rem;
}

.editor-row {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  gap: .75rem;
}

.editor-status {
  margin-left: auto;
}

.editor-status p {
  color: var(--lighter-gray);
  font-size: var(--text-tiny);
}

.editor-image {
  flex-shrink: 0;
}

.editor-image svg {
  font-size: 1.75rem;
  color: var(--light-gray);
}

.search-input {
  font-size: var(--text-small);
  padding: .75rem 1rem;
}

#form-templateDescription {
  color: var(--grayer);
  font-size: var(--text-small);
  max-width: 70ch;
}

.remove-editor {
  cursor: pointer;
  padding: 5px;
  margin-left: 10px;
  color: var(--lighter-gray);
}

.remove-editor:hover {
  color: #333;
}

.cross-icon {
  position: relative;
  top: 1px;
  font-size: 2rem;

  line-height: 1;
  transition: color .1s;
}

.lens-list-description {
  margin-bottom: .5rem;
}

.user-profile-initials {
  width: 6rem;
  height: 6rem;
  border-radius: 4px;
  background-color: #fafafa;
  line-height: 1;
  font-size: 2rem;
  display: grid;
  place-content: center;
  font-family: var(--font-serif);
  font-weight: bold;
  font-style: italic;
  color: var(--gray);
  border: 1px solid #ddd;
}

.user-profile-image {
  width: 6rem;
  height: 6rem;
  border-radius: 4px;
}

.user-profile-image.small,
.user-profile-initials.small {
  width: 3rem;
  height: 3rem;
}

.user-profile-initials.small {
  font-size: 1rem;
}

.user-profile-image.tiny,
.user-profile-initials.tiny {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid white;
}

.user-profile-image.xs,
.user-profile-initials.xs {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid white;
}

.user-profile-initials.tiny {
  font-size: 1rem;
  background-color: white;
  border: 2px solid #f5f5f5;
}

.home-user-info .user-profile-initials {
  margin-bottom: 1.2rem;
}

.image-upload-group {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.image-upload-group input[type="file"] {
  margin-bottom: .75rem;
}

.icon-button {
  background-color: transparent;
  color: #999;
  transition: .1s all;
  /* font-size: 1.4rem; */
  border-radius: 8px;
  padding: .75rem;
  border: 1px solid transparent;
}

.icon-button:not(:disabled):hover {
  color: var(--light-gray);
  border: 1px solid #eee;
  background-color: white;
}

.icon-button:not(:disabled):active {
  transform: scale(.92);
}

.editors-list-button {
  display: flex;
  /* margin-right: 1.1rem; */
  cursor: pointer;
  /* opacity: .9; */
  transition: .1s opacity;
}

.editors-list-button:hover {
  /* opacity: 1; */
}

.editors-list-button div:not(:last-child),
.editors-list-button img:not(:last-child) {
  margin-right: -.65rem;
}

.map-settings-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid #eee;
}

.list-card .editors-list-button {
  margin-top: .75rem;
}

.panel-protip {
  margin-top: 1.5rem;
}

.panel-protip p {
  font-size: var(--text-small);
  color: var(--light-gray);
  font-style: italic;
}

.link-child-lens {
  margin-right: .25rem;
}

a.nested-lenses {
  flex-shrink: 0;
}

.link-child-lens svg {
  font-size: 1.6rem;
  transform: rotate(180deg);
  color: var(--link-color);
  transition: transform .1s ease-in-out;
}

.link-child-lens svg:hover {
  transform: scale(1.05) rotate(180deg);
}

.config-group-tooltip {
  padding: 1rem 1rem;
}



.config-group-tooltip p {
  font-family: var(--font-serif);
  max-width: 740px;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.config-group-tooltip h3 {
  margin-bottom: .35rem;
}

.config-group-tooltip img {
  width: 740px;
  height: auto;
}

.icon-group-tooltip {
  padding: .5rem;
}

.tippy-box[data-theme~='config-group-tooltip'] {
  position: relative;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  color: var(--gray);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
  width: 100%;
  max-width: none !important;
}

.tippy-box[data-theme~='icon-group-tooltip'] {
  position: relative;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  color: var(--gray);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05);
  width: 100%;
  max-width: 440px !important;
}

.info-icon {
  cursor: pointer;
}

.tippy-box[data-theme~='helper-wizard'] {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .97) 20%, rgb(237 241 255 / 97%) 100%);
  color: #093386;
  border: 1px solid #cdd6e9;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, .18);
  width: 100%;
  max-width: none !important;
  padding: 1rem 1rem;
}

.tippy-box[data-theme~='helper-wizard'] h3 {
  margin-bottom: .35rem;
}

.tippy-box[data-theme~='helper-wizard'] p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  max-width: 300px;
}

.tippy-box[data-theme~='helper-wizard'] button {
  font-size: 1rem;
  /* color: #6323f2; */
  /* background-color: white; */
  /* border: 1px solid #073798; */
  border-radius: 4px;
  width: 100%;
}

.tippy-box[data-theme~='helper-wizard'] .tippy-arrow {
  /* color: var(--black); */
  color: var(--link-color);
}

#startTutorial {
  flex-shrink: 0;
}

.tippy-box[data-placement^=right]>.tippy-arrow {
  left: -2px;
}

.tippy-box[data-placement^=left]>.tippy-arrow {
  right: -2px;
}

.tippy-box[data-placement^=top]>.tippy-arrow {
  bottom: -2px;
}

.tippy-box[data-placement^=bottom]>.tippy-arrow {
  top: -2px;
}

.lens table {
  margin: 0 auto;

}


/* .cancel-container h1 {
  margin-bottom: 1rem;
} */

.cancel-container h1+p {
  margin-bottom: 1.5rem;
}

.professions-form,
.cancellation-reasons-form {
  margin-top: 1rem;
}

.professions-form input[type="checkbox"],
.cancellation-reasons-form input[type="checkbox"] {
  margin-right: .2rem;
}

.professions-form label {
  padding: .5rem 0;
}

#other-input {
  margin-bottom: 2rem;
}

.link {
  color: var(--link-color);
  font-weight: bold;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.link.large {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  color: var(--link-color);
}

.manage-subscription-button {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-align: center;
  justify-content: center;
  padding: .9rem 1rem;
  color: white;
}

.dashed-line {
  border: 3px dashed #eee;
  border-bottom: 0;
  margin: 2rem 0 2rem;
}

.profile-subscription-status {
  font-weight: bold;
  color: white;
  display: inline-block;
  padding: .3rem .35rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  line-height: 1;
}

.upsell-container p {
  margin-bottom: 1.25rem;
}

.upsell-container form {
  margin: 2rem 0;
}

.upsell-container h2 {
  margin-bottom: 1.5rem;
}



.context-menu-icon-nest-icon span::before {
  content: url(/arrow-down.svg);
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 25px;
  margin-right: 8px;
}

.tippy-box[data-theme~='annotation'] .popover-content {
  padding: .5rem 1rem .5rem .5rem;
}

.comment-author-info {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .5rem;
}

.comment-author-info h4 {
  margin-bottom: 0;
}

.tippy-box[data-theme~='annotation'] a.open-comment-panel {
  display: block;
  margin-top: 1rem;
}

/* #comments-panel {
  position: relative;
  height: 100%;
  overflow: hidden;
} */

#comments-panel .nav-panel-control {
  position: sticky;
  top: 0;
  z-index: 1;
}

#comments-panel .nav-panel-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#comments-panel .comments-container {
  flex: 1;
  /* this will make the comments container take up all available space */
  /* allow scrolling only vertically */
  padding: 1rem 0;
  /* some space for comments */
}

#comments-panel textarea {
  /* make sure it stays on top */

  /* make sure the comments are hidden beneath it */
  border-top: 1px solid #ddd;
  /* a border to separate it from the comments */
  width: 100%;
  /* ensure it spans the entire width */
}

#comments-panel .textarea {
  position: sticky;
  bottom: 0;
  /* always stick to the bottom */
  z-index: 1;
  background-color: #fff;
  padding-bottom: 1rem;
}

#comments-panel .comment {
  /* styles for individual comments */
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

#comments-panel .text-bullet-content {
  margin-bottom: 4px;
  padding: 1.1rem 1.5rem;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  border-radius: 3px;
  background: white;
  border: 1px solid #eee;
  line-height: 1.65;
  position: relative;
  /* font-size: var(--text-small); */
  max-width: 70ch;
}

#comments-panel .comment p {
  white-space: break-spaces;
  font-size: var(--text-small);
}

.comment-actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.comment-actions button {
  padding: .5rem;
  background: transparent;
  font-size: 1.4rem;
  color: var(--lighter-gray);
  transition: .1s;
  border-radius: 100%;
}

.comment-actions button:hover {
  background-color: #f1f1f1;
}

.lens-feedback-container {
  width: 100%;
  padding: 2rem 1rem;
  background-color: #fafafa;
  margin-top: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.lens-feedback-container .lens-feedback-box {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.lens-feedback-box .feedback-buttons {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1rem 0;
}

.lens-feedback-box .feedback-buttons button {
  font-family: var(--font-serif);
  font-weight: normal;
}

.lens-feedback-box h4 {
  font-size: 1.2rem;
}

.lens-feedback-box .feedback-buttons svg {
  font-size: 1.2rem;
  color: var(--gray);
}

.lens-feedback-box .feedback-buttons button.selected {
  border: 1px solid var(--link-color);
  color: var(--link-color);
}

.lens-feedback-box .feedback-buttons button.selected svg {
  color: var(--link-color);
}

.app-feedback-button-container {
  /* margin-left: auto; */
}

.nav-buttons-container {
  margin-left: auto;
  display: flex;
  align-self: center;
}

.nav-buttons-container>a {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: var(--text-small);
  flex-shrink: 0;
}

#feedback-btn svg {
  font-size: 1.3rem;
}

.tippy-box[data-theme~='app-feedback'] {
  background-color: #fff;
  border: 1px solid #ddd;
  color: var(--black);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, .1);
  width: 100%;
  max-width: 55ch !important;
  min-width: 55ch;
  padding: .75rem .45rem;
}

.tippy-box[data-theme~='app-feedback'] .feedback-box h3 {
  margin-bottom: .65rem;
}

.tippy-box[data-theme~='app-feedback'] .feedback-box button {
  font-size: 1.1rem;
}

.tippy-box[data-theme~='app-feedback'] .feedback-box textarea {
  font-family: var(--font-serif);
  margin-bottom: .3rem;
}


.textBullet-toolbar {
  position: absolute;
  top: -35px;
  right: 5px;
  padding: 1px;
  border: 1px solid #ddd;
  background-color: white;
  border-radius: 4px;
  display: none;
  transition: .2s;
  align-items: center;
}

.textBullet-toolbar button {
  padding: 7px;
  background-color: transparent;
  border-radius: 4px;
}

.textBullet-toolbar button:hover {
  background-color: #f1f1f1;
}

.textBullet-toolbar button svg {
  font-size: 1.45rem;
  color: #888;
}

.lens-container ul li:hover .textBullet-toolbar {
  display: flex;
}

.tippy-box[data-theme~='tag-picker'] {
  background-color: #fff;
  border: 1px solid #ddd;
  color: var(--black);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, .1);
  width: 100%;
  padding: 0;
}

.tippy-box[data-theme~='tag-picker'] .tippy-content {
  padding: 0;
}

.tippy-box[data-theme~='tag-picker'] .tag-list {
  min-width: 260px;
  overflow: auto;
  max-height: 300px;
}

.tippy-box[data-theme~='tag-picker'] .tag-list button {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  background: transparent;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  font-size: var(--text-tiny);
}

.tippy-box[data-theme~='tag-picker'] .tag-list button svg {
  font-size: 1.35em;
}

.tippy-box[data-theme~='tag-picker'] .tag-list button span {
  color: var(--grayer);
  font-family: var(--font-serif);
  font-weight: normal;
}

.tippy-box[data-theme~='tag-picker'] .tag-list button.selected {
  background-color: var(--link-color);
}

.tippy-box[data-theme~='tag-picker'] .tag-list button.selected svg {
  color: white !important;
}

.tippy-box[data-theme~='tag-picker'] .tag-list button.selected span {
  color: white !important;
}

.tippy-box[data-theme~='tag-picker'] .tag-list button:not(.selected):hover {
  background-color: #fafafa;
}

.textBullet-tags .tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 3px 8px;
  border-radius: 5px;
  border: 1px solid #eee;
  /* font-size: 1rem; */
  width: fit-content;
  /* font-family: var(--font-sans); */
  /* box-shadow: 0 0 2px rgba(0, 0, 0, .05); */
  /* font-style: italic; */
  /* font-weight: bold; */
  color: var(--gray);
  background-color: #fafafa;
}

.textBullet-tags .tag svg {
  font-size: 1em;
}

.textBullet-tags .tag span {
  color: var(--black);
  font-size: var(--text-tiny);
}

.lens ul li .has-tags {
  padding-bottom: .4rem;
}

.lens ul li .has-tags .textBullet-text {
  margin-bottom: .5rem;
  /* padding-bottom: 1rem;
  border-bottom: 2px dashed #eee; */
}

.textBullet-tags {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  /* margin-bottom: .6rem; */
}

button.textBullet-nest:hover svg {
  transition: .1s;
  color: var(--link-color);
}

button.textBullet-comment:hover svg {
  transition: .1s;
  color: #ffa01d;
}

button.textBullet-tag:hover svg {
  transition: .1s;
  color: #2F3F90;
}

button.textBullet-delete:hover svg {
  transition: .1s;
  color: #BF2B45;
}

.slack-link {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.slack-link img {
  width: 20px;
  height: 20px;
}

#lens-feedback-button,
#export-lens-button,
#show-map-sharing-settings,
#show-nav-panel {
  color: var(--copy-lighter);
}

#lens-feedback-button:hover,
#export-lens-button:hover,
#show-map-sharing-settings:hover,
#show-nav-panel:hover {
  color: var(--gray);
}



/* #lens-feedback-button svg {
  color: var(--grayer);
} */

#lens-feedback-button svg:first-of-type {
  margin-right: -5px;
}

.non-user-lens-promo {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 1rem;
  padding: 1.1rem 4rem;
  background-color: white;
  border-top: 1px solid var(--border-color);
  justify-content: space-between;
  align-items: center;
  z-index: 200;
  background-color: #fff;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, .05);
}

.non-user-lens-promo a.primary-button.large {
  max-width: 350px;
  font-size: 1.1rem;
}

@media (max-width: 1000px) {
  .non-user-lens-promo {
    flex-direction: column;
    padding: 1rem;
  }

  .non-user-lens-promo a.primary-button.large {
    max-width: none;
    width: 100%;
    /* margin-top: 1rem; */
  }
}



#ai-lens-finder-button {
  margin-bottom: 2rem;
  background-image: linear-gradient(90deg, var(--dark-purple), var(--purple));
  color: white;
  border-radius: 4px;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  transition: .1s ease-in-out;
}

#ai-lens-finder-button:hover {
  background-image: linear-gradient(180deg, var(--dark-purple), var(--purple));
  transform: scale(1.01);
}

#ai-lens-finder-button span {
  background-color: var(--purple);
  background-color: #fff;
  padding: 5px 5px;
  border-radius: 4px;
  color: white;
  color: var(--purple);
  font-size: var(--text-xs);
  line-height: 1;
  position: relative;
  bottom: 2px;
  font-weight: bold;
  display: inline-block;
  margin-left: .25rem;
}

.main-create-column #recommendations {
  padding: 1rem 0 2rem;
  margin-top: 2rem;
  border-top: 3px dashed #eee;
}

.main-create-column #recommendations .recommendation {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  cursor: pointer;
  padding: 1.4rem;
  margin-bottom: .5rem;
}

.main-create-column #recommendations .recommendation p {
  max-width: 65ch;
  font-size: var(--text-small);
  color: var(--grayer);
  margin-top: .25rem;
}

.main-create-column #recommendations .recommendation:hover {
  background-color: #fafafa;
}

#submitButton {
  display: none;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.1rem;
}

#submitButton svg {
  font-size: 1.15em;
}

#ai-lens-finder-input {
  margin-top: 1.75rem;
}

.ai-lens-finder-container {
  display: none;
}

.ai-lens-finder-container>p {
  /* font-size: var(--text-small); */
  color: var(--gray);
  margin-top: -.65rem;
}

button:disabled {
  cursor: not-allowed;
}

.recommendation-title {
  display: flex;
  gap: .6rem;
  align-items: center;
}

.recommendation-title-lenses {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.recommendation-title-lenses img,
.recommendation-title-lenses svg {
  width: 22px;
  height: 22px;
  margin-right: -8px;
}

.recommendation-title-lenses img:last-child,
.recommendation-title-lenses svg:last-child {
  margin-right: 0rem;
}

.home-main-container {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
  max-width: calc(1200px + 4rem);
  width: 100%;
  flex-wrap: wrap;
  padding: 0rem 1rem;
}

.home-main-admin-container {
  /*  */
  display: flex;
  overflow: hidden;
  position: relative;
  /* background-color: white; */
}

.home-main-admin-container.project-page {
  height: calc(100vh - 4rem);
}

.main-container {
  padding-top: 6rem;
}

.main-container.no-margin {
  padding-top: 0rem;
}

/* .home-main-container>section {
  align-self: flex-start;
  padding: 2rem 2rem;
} */

.list-container {
  margin-top: 1.5rem;
  max-height: calc(100vh - 22rem);
  overflow-y: auto;
  padding: 0 0rem 0 0;
}

.project-details-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.project-details-title h1 {
  margin-bottom: 0;
}

.project-details-title button {
  flex-shrink: 0;
}

form#projectForm {
  width: 100%;
}

form#projectForm input[name="title"],
form#projectForm textarea {
  display: block;
  width: 100%;
}

form#projectForm label {
  margin-bottom: .45rem;
}

form#projectForm input[name="title"] {
  /* font-family: var(--font-sans); */
  font-size: 1rem;
}

.lens-help-button-container {
  position: fixed;
  bottom: 2rem;
  right: .5rem;
}

.nav-project-title {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}

.nav-project-title>p {
  font-size: var(--text-xs);
  color: var(--lighter-gray);
  margin-top: 0rem;
}

.nav-container a.project-nav-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-right: 1.5rem;
  border-right: 1px solid #eee;
}

#projectTitleNav {
  text-overflow: ellipsis;
  max-width: 30ch;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1.1rem;
}

.project-nav-link p {
  font-family: var(--font-serif);
  color: var(--lighter-gray);
  font-size: var(--text-xs);
  margin-top: -.1rem;
}

.project-title-container {
  display: flex;
  margin-bottom: 2rem;
  /* justify-content: space-between; */
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .5rem;
}

.home-container .section-header .primary-button {
  margin-top: 0;
}

.home-container .section-header h2 {
  margin-bottom: 0;
}

.list-container .list-card .config-group-buttons .secondary-button {
  font-size: initial;
  height: auto;
  width: auto;
}

.context-menu-item.context-menu-hover {
  background-color: #f1f1f1 !important;
  color: var(--black) !important;
}

#projectDetails>p {
  white-space: break-spaces;
  padding: 1rem;
}

.main-create-column #recommendations>h2 {
  font-size: 1.2rem;
  margin-top: 2.5rem;
  margin-bottom: .25rem;
}

.main-create-column #recommendations>p {
  margin-bottom: 1rem;
}

.context-list-item-header {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.list-container .list-card .context-list-item-header h3 {
  margin-bottom: 0;
}

.context-list-item-header p {
  color: var(--light-gray);
}

.context-list-item-header svg {
  font-size: 1.35em;
  color: var(--light-gray);
  position: relative;
  top: 6px;
}

.contexts-column .list-container .list-card a {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.create-page-main-input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.create-container form .create-page-main-input-header button.secondary-button {
  margin-top: 0;
}

.added-contexts-container {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  padding-top: .25rem;
  padding-bottom: 1.75rem;
  /* border-bottom: 2px dashed var(--border-color); */
  align-items: center;
}

.added-contexts-container>span {
  font-size: var(--text-small);
  color: var(--light-gray);
  display: block;
  margin-right: .5rem;
}

.added-context-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  padding: 4px 9px;
  border-radius: 5px;
  border: 1px solid #eee;
  width: fit-content;
  color: var(--gray);
  background-color: #fafafa;
}

button.context-as-input {
  background: none;
  padding: 0 0 0 .5rem;
  border-left: 1px solid var(--border-color);
  color: var(--gray);
  font-size: 1rem;
}

#addContextButton svg {
  font-size: 1.2em;
}

#metadata-panel .form-group p {
  white-space: break-spaces;
}

#metadata-panel .added-contexts-container {
  padding-top: 0;
  padding-bottom: 0.75rem;
}

#metadata-panel .added-contexts-container .added-context-item {
  font-size: initial;
}

.admin-home-container .list-container .list-card a {
  min-height: 200px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.admin-home-container .list-container .list-card .config-group-buttons .secondary-button {
  position: inherit;
  transform: none;
  font-size: var(--text-tiny);
}

.admin-home-container .list-container .list-card .config-group-buttons {
  padding-right: .5rem;
  gap: .25rem;
}

.home-sidebar,
.project-sidebar {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 300px;
  background-color: #fafafa;
  padding-right: .75rem;
  padding-left: .75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-right: 1px solid #eee;
  height: calc(100vh - 6.5rem);
  overflow-y: auto;
  height: initial;
  position: relative;
  transition: .2s ease margin, .2s ease transform;
}

.home-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-sidebar {
  flex-basis: 400px;
  padding-right: 0rem;
  padding-left: 0rem;
  padding-top: 1rem;
}

.home-main-admin-container .home-container,
.project-container {
  max-width: 1600px;
  border: none;
  padding: 2.5rem 3.5rem 6rem;
  width: 100%;
  flex: 1;

  box-shadow: none;
  align-self: auto;
  background-color: #fcfcfc;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.7)), url('/images/context-background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  /* background: none;
  background-color: transparent; */
}

.project-container {
  padding-top: 0rem;
  overflow: auto;
}

.home-cards-container {
  display: grid;
  gap: 1.5rem;
  grid-template-columns:
    repeat(auto-fill, minmax(19rem, 1fr));
}

.home-cards-container.projects {
  display: grid;
  gap: 1.5rem;
  grid-template-columns:
    repeat(auto-fill, minmax(28rem, 1fr));
}

.home-cards-container>.home-card {
  width: 100%;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .02);
  color: var(--black);
  text-decoration: none;
  padding: 1.35rem;
  border: 1px solid #eee;
  border-radius: 4px;
  align-self: flex-start;
  transition: .15s;
  position: relative;
  background-color: white;
}

.home-cards-container>.home-card:hover {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  background-color: #fafafa;
  border: 1px solid #ddd;
}

.home-cards-container>.home-card h3 {
  font-size: 1rem;
  color: var(--grayer);
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.home-cards-container>.home-card p {
  font-size: var(--text-tiny);
  color: var(--copy-lighter);
}

.home-cards-container>.home-card p.last-updated-caption {
  color: var(--light-gray);
}

.lenses-svg-container {
  display: flex;
  padding: 0rem 0 .5rem 0;
  align-items: center;
}

.lens-tree .lenses-svg-container h4 {
  font-weight: normal;
}

.home-card .lenses-svg-container {
  padding-bottom: .85rem;
}

.lenses-svg-container img {
  width: 1.5rem;
  margin-right: -.5rem;
}

.home-cards-container>.home-card .more-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.5rem 0.5rem;
}

.home-card.create-link {
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 120px;
  /* box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); */
  font-family: var(--font-sans);
  background-color: var(--link-color);
  border: 1px solid var(--link-color-darker);
}

.home-card.create-link p {
  font-size: 1.1rem;
  color: white;
}

.home-card.create-link:hover {
  background-color: var(--link-color-darker);
  border: 1px solid var(--link-color-darker);
}

.home-card .editors-list-button {
  margin-top: 1rem;
}

.home-sidebar .section-header {
  margin-bottom: .5rem;
  padding: .85rem 1rem;
  color: var(--light-gray);
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid transparent;
}

.home-sidebar .section-header:hover {
  background-color: #f1f1f1;
  color: var(--black);
}

.home-sidebar .section-header h3 {
  font-size: 1rem;
  width: 100%;
}

.home-sidebar .section-header.selected {
  background-color: #f5f5f5;
  border: 1px solid #eee;
  color: var(--black);
}

.ai-assistant-container {
  max-width: 740px;
}

.ai-assistant-accordion {
  width: 100%;
  background-image: linear-gradient(90deg, var(--dark-purple), var(--purple));
  color: white;
  padding: 1rem 1rem 1rem 1.5rem;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ai-assistant-accordion h4 span {
  background-color: #fff;
  padding: 5px 5px;
  border-radius: 4px;
  color: var(--purple);
  font-size: var(--text-tiny);
  line-height: 1;
  position: relative;
  bottom: 1px;
  font-weight: bold;
  display: inline-block;
  margin-right: 0.5rem;
}

.ai-assistant-accordion.open {
  border-radius: 6px 6px 0 0;
}

.ai-assistant-accordion~* {
  display: none;
}


.ai-assistant-accordion.open~* {
  display: block;
}


.ai-assistant-accordion svg {
  color: white;
  font-size: 1.5rem;
  transition: .1s;
}

.ai-assistant-accordion.open svg {
  transform: rotate(90deg);
}

.ai-assistant-content {
  padding: 1.5rem 1.5rem;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .08);
  border-radius: 6px;
  border-bottom: 1px solid var(--border-color);
  background-color: white;
  display: none;
  border-top: 8px solid var(--purple);
  margin-bottom: 2.5rem;
}

.ai-assistant-content.open {
  display: block;
}

.ai-assistant-content h3 {
  margin-bottom: .5rem;
  line-height: 1.65;
}

.ai-assistant-content h4 {
  margin-bottom: 1rem;
  line-height: 1.65;
}

.ai-assistant-content>p {
  font-size: var(--text-small);
  color: var(--grayer);
  max-width: 65ch;
}

.ai-assistant-content textarea {
  width: 100%;
  margin-top: 1.5rem;
  font-size: var(--text-small);
}

.ai-assistant-content textarea:focus-visible {
  outline: 2px solid var(--dark-purple);
  border: 1px solid transparent;
}

.project-cards-container {
  display: grid;
  gap: 2.25rem;
  grid-template-columns:
    repeat(auto-fill, minmax(24rem, 1fr));
  padding: 1.5rem 0;
  margin-bottom: 2.5rem;
}

#project-insights {
  padding: 2rem;
}

#project-framework {
  padding-top: 2rem;
  animation: fadeInUpwards 0.25s ease-in-out;
}

.project-insights-container {
  display: grid;
  gap: 2.25rem;
  grid-template-columns:
    repeat(auto-fill, minmax(24rem, 1fr));
  padding: 1.5rem 0;
  margin-bottom: 2.5rem;
}

.project-cards-container .project-card {
  width: 100%;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  color: var(--black);
  text-decoration: none;
  padding: 1.35rem;
  border: 1px solid #eee;
  border-radius: 4px;
  align-self: flex-start;
  transition: .15s;
  position: relative;
  background-color: white;
}

.project-cards-container>.project-card h3 {
  margin-bottom: .5rem;
}

.project-cards-container>.project-card>h4 {
  font-size: var(--text-small);
  color: var(--lighter-gray);
  /* text-transform: uppercase; */
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.project-cards-container .project-card .project-section-description {
  /* color: var(--copy-lighter); */
  font-size: var(--text-small);
  padding-bottom: 1rem;
  line-height: 1.65;
}

.project-list {
  display: flex;
  flex-direction: column;
  margin-top: -.5rem;
  padding-left: .75rem;
}

.project-list-card {
  display: flex;
  font-family: var(--font-serif);
  color: var(--gray);
  text-decoration: none;
  padding: .7rem 1rem;
  border-radius: 4px;
  border: 1px solid transparent;
}

.project-list-card p {
  font-size: var(--text-small);
}

.project-list-card:hover {
  background-color: #f1f1f1;
  border: 1px solid #eee;
}

.project-map-list {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
}

.lens-sidebar .project-map-list {
  padding-right: 0rem;
}


.project-map-list-card {
  display: flex;
  gap: .75rem;
  font-family: var(--font-serif);
  color: var(--gray);
  text-decoration: none;
  padding: .6rem .85rem;
  /* border-radius: 4px; */
  border-bottom: 1px solid #eee;
  justify-content: space-between;
  /* margin-left: .5rem; */
}

.project-map-list-card button.icon-button {
  flex-shrink: 0;
  padding: 0rem .75rem;
  align-self: center;
  font-size: 1.1rem;
}

.project-map-list-card button.icon-button:hover {
  background-color: transparent;
  color: #555;
  border: 1px solid transparent;
  transform: rotate(90deg) scale(1.1);
}

.hasProject .project-map-list-card.open button.icon-button {
  transform: rotate(-90deg) scale(1);
}

.hasProject .project-map-list-card~* {
  display: none;
}

.hasProject .project-map-list-card.open~* {
  display: block;
}

.project-map-list-card:hover {
  background-color: #e5e5e5;
}

.project-map-list-card p {
  font-size: var(--text-tiny);
}


.project-sidebar-section .section-header h3,
.lens-sidebar-section .section-header h3 {
  font-size: var(--text-tiny);
  /* font-family: var(--font-system); */
  font-weight: normal;
  font-weight: bold;
  margin-right: .35rem;
}

.project-card-suggested-container {
  display: grid;
  grid-template-columns:
    repeat(auto-fill, minmax(300px, 1fr));
  gap: 0em 2rem;
}

.project-card-suggested-card {
  padding: .7rem .5rem;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
  transition: .1s;
  position: relative;
}

.project-card-suggested-card .archive-recommended-lens {
  position: absolute;
  top: 2px;
  right: 2px;
  visibility: hidden;
  transition: .1s;
  font-size: 1rem;
}

.project-card-suggested-card:hover .archive-recommended-lens {
  visibility: visible;
}

.project-card-suggested-card:hover {
  background-color: #f5f5f5;
}

.project-card-suggested-card h4 {
  font-size: var(--text-small);
  /* margin-bottom: .25rem; */
  /* color: var(--grayer); */
  font-weight: normal;
  /* font-size: 1rem; */
}

.project-card-suggested-card p {
  font-size: var(--text-tiny);
  color: var(--copy-lighter);
  line-height: 1.65;
}

.project-card-suggested-card a {
  text-decoration: none;
  color: var(--link-color);
  display: block;
  margin-top: .5rem;
  font-family: var(--font-sans);
  font-size: var(--text-small);
}

.project-card-suggested-card a:hover {
  text-decoration: underline;
}

.project-card .primary-button.large {
  font-size: 1rem;
}

.ai-assistant-accordion p {
  font-size: var(--text-tiny);
  color: #fff;
}

.hasProject .project-sidebar-section,
.hasProject .lens-sidebar-section {
  padding: 1rem 0rem 1rem .5rem;
  /* border-bottom: 1px solid var(--border-color); */
}

.lens-sidebar-sections {
  padding-top: 0rem;
  /* border-top: 1px solid var(--border-color); */
}

.project-sidebar-section:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}


.project-section-map {
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
  display: block;
}

.project-section-map:hover {
  background-color: #f5f5f5;
}

.project-section-map h4 {
  color: var(--black);
  font-size: var(--text-small);
}

.project-section-map p.lens-count {
  font-size: var(--text-tiny);
  color: var(--grayer);
}

.projects-column>p {
  margin: .5rem 1rem 0;
}

.accordion-main~* {
  display: none;
}


.accordion-main.open~* {
  display: block;
}

.accordion-main {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

.accordion-main svg {
  font-size: 1.4rem;
  transition: .1s;
  color: #bbb;
  transform: rotate(90deg);
}

.accordion-main.open svg {
  transform: rotate(-90deg);
}

.project-card .accordion-main {
  padding: .9rem 0;
  /* border-top: 1px solid var(--border-color); */
  border-bottom: 1px solid var(--border-color);
}

.project-card .accordion-main h4 span {
  color: #bbb;
  display: inline-block;
  margin-left: .25rem;
}

.project-card .accordion-main.open {
  border-bottom: none;
  padding: .9rem 0 .65rem;
}



.home-maps>.section-header {
  padding: 0;
  margin-bottom: 1.5rem;
}

.home-maps>.section-header a.primary-button,
.project-container>.section-header .secondary-button {
  width: fit-content;
  margin: 0;
  font-size: 1rem;
}

.project-container>.section-header .secondary-button svg {
  font-size: 1.3rem;
}

.project-container>.section-header {
  padding: 0;
  margin-top: 0rem;
}

.project-container>.section-header h2 {
  font-size: 1.45rem;
}

.home-maps>.section-header h1 {
  font-size: 1.45rem;
  margin-bottom: 0;
  color: var(--black);
}

.nav-container .quick-map-button {
  margin-right: 0rem;
  flex-shrink: 0;
}

.nav-container .quick-map-button a {
  color: white;
}

.project-sidebar-section .project-map-list ul {
  list-style: none;
  /* margin-top: .5rem; */
  padding-left: 0;
}

.lens-sidebar-section .project-map-list ul {
  list-style: none;
  /* margin-top: .5rem; */
  padding-left: 0;
}

.lens-tree+.lens-sidebar-section .project-map-list ul,
.lens-sidebar-section .project-map-list ul ul {
  margin-top: 0;
  padding-left: 0.75rem;
}

.project-card-suggested-container .lenses-svg-container,
.project-section-map .lenses-svg-container {
  padding-bottom: 0;
}

.project-section-map .lenses-svg-container h4 {
  font-weight: bold;
}

.project-sidebar-section .lenses-svg-container,
.lens-sidebar-section .lenses-svg-container,
.dragging-stack-item .lenses-svg-container,
.lens-sidebar .lenses-svg-container {
  padding-bottom: 0;
  gap: 0.65rem;
}

.project-sidebar-section .recommendation-title-lenses img:last-child,
.lens-sidebar-section .recommendation-title-lenses img:last-child,
.recommendation-title-lenses svg:last-child {
  margin-right: 0;
}

.lens-sidebar .lenses-svg-container h4,
.project-sidebar .lenses-svg-container h4,
.dragging-stack-item .lenses-svg-container h4 {
  font-family: var(--font-serif);
  font-size: var(--text-tiny);
  font-weight: normal;
  color: var(--copy-lighter);
}

.project-card>.section-header {
  padding: 0;
  padding-bottom: .5rem;
  padding-right: 5rem;
}

.project-card>.section-header h3 {
  margin-bottom: 0;
  line-height: 1.65;
  /* font-size: 1.05rem; */
  width: 100%;
}

/* .project-card>.section-header h3:focus-visible {
  outline: none;
} */

[contenteditable] {
  cursor: text;
}

[contenteditable]:focus-visible {
  outline: none;
  /* outline: 2px solid lightblue;
  outline-offset: 2px; */
}

.project-card .modify-project-section {
  position: absolute;
  right: 10px;
  top: 10px;

}

.project-card .modify-project-section>button {
  font-size: 1rem;
  opacity: 1;
  transition: .1s;
}

.project-card .archive-project-section svg {
  color: var(--lighter-gray);
}

.project-card .edit-project-section {}

.project-card:hover .modify-project-section>button {
  opacity: 1;
}


.loading-indicator.not-fixed {
  position: initial;
  width: 100%;
  display: block;
}

.loading-indicator.not-fixed svg {
  margin: 0 auto;
}

.ai-loading-indicator {
  position: fixed;
  bottom: 1.5rem;
  right: 2rem;
  display: block;
  color: white;
  background-image: linear-gradient(90deg, var(--dark-purple), var(--purple));
  border-radius: 4px;
  padding: .85rem 1.25rem .85rem .65rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-system);
}

.ai-loading-indicator .loading-indicator {
  width: auto;
}

.ai-loading-indicator .loading-indicator svg {
  width: 1.25em;
}

.ai-loading-indicator h4 {
  font-size: var(--text-small);
  font-family: var(--font-system);
}

.ai-loading-indicator h4 span {
  background-color: #fff;
  padding: 5px 5px;
  border-radius: 4px;
  color: var(--purple);
  font-size: var(--text-tiny);
  font-family: var(--font-system);
  line-height: 1;
  position: relative;
  bottom: 0px;
  font-weight: bold;
  display: inline-block;
  margin-right: 0.4rem;
}

.ai-loading-indicator h4 em {
  /* font-family: var(--font-serif); */
  font-style: normal;
  font-weight: normal;
}

.project-card-suggested-card .lenses-svg-container,
.project-section-map .lenses-svg-container {
  gap: .5rem;
}

.project-card-suggested-card .lenses-svg-container {
  padding-right: 3rem;
}

.checkout-testimonials {
  max-width: 520px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
  /* border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color); */
  gap: 3rem;
  padding: 2rem 0rem 2rem;
}

.checkout-testimonials>div img {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  margin-bottom: .75rem;
}

.checkout-testimonial-person>p {
  margin-top: .75rem;
  /* font-size: var(--text-small); */
  color: var(--grayer);
}

.checkout-testimonial-person-info p {
  font-size: var(--text-small);
  font-style: italic;
}

.home-maps>h3 {
  margin: 2rem 0 1rem;
}

.ui-widget {
  font-family: var(--font-serif);
}

.ui-widget.ui-widget-content {
  border: none;
}

.ui-tabs .ui-tabs-panel {
  padding: 1.5rem 0;
}

.ui-tabs .ui-tabs-nav {
  padding: 5px;
  background-color: #f5f5f5;
  border-radius: 7px;
}

.ui-widget-header {
  background-color: transparent;
  border: none;
}

h3.panel-header {
  margin-bottom: 1.5rem;
}

.ui-tabs .ui-tabs-nav li,
.tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 0rem;
  border: none;
  background-color: transparent;
  border-radius: 4px;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
  font-family: var(--font-sans);
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  background-color: white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, .04);
}

.ui-tabs ul.ui-tabs-nav.tabs-nav li {
  padding: 0;
}

.tabs-nav li a {
  color: var(--black);
}

.tabs-nav li a {
  text-decoration: none;
  font-family: var(--font-sans);
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  padding: .75rem 1.25rem;
  /* font-size: 1rem; */
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  padding-bottom: 0;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background-color: #f5f5f5;
  border: 1px solid #eee;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: var(--light-gray);
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: var(--black);
  background-color: transparent;

}

.home-container-tool-panel {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  align-items: center;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: var(--font-serif);
}

.ui-widget input.search-input {
  padding: .7rem 1rem .7rem 1rem;
  min-width: 260px;
  font-size: var(--text-small);
}

.project-card textarea {
  width: 100%;
}

.project-card textarea.edit-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
}


.project-card textarea.edit-description {
  font-size: var(--text-small);
}

.recommend-more-container {
  margin: 1.5rem 0;
}

.context-menu-list li.generate-new-sections {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 240px;
  background-color: var(--purple);
  color: white;
}

.context-menu-list li.generate-new-sections svg {
  margin-right: 4px;
}

.context-menu-list li.add-custom-section-menu {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 240px;
  padding-left: .8rem;
}

.context-menu-list li.add-custom-section-menu svg {
  font-size: 1.5em;
}

.add-new-section-menu {
  width: fit-content;
}

.add-new-section-menu li {
  padding-top: .7rem;
  padding-bottom: .7rem;
}

.context-menu-list li.generate-new-sections:hover {
  background-color: var(--dark-purple) !important;
  color: white !important;
}

.ui-widget-content {
  background-color: transparent;
}

.project-home-nav-container {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-shrink: 0;
  max-width: calc(320px - 2rem);
  width: 100%;
}

.project-home-nav-container>a {
  height: 40px;
  font-size: 1.1em;
  color: var(--lighter-gray);
  flex-shrink: 0;
}

.project-card .accordion-main h4 {
  font-size: var(--text-small);
  font-family: var(--font-system);
}

.last-updated-caption {
  color: var(--light-gray);
  /* font-style: italic; */
}

.ai-button {
  background-image: linear-gradient(90deg, var(--dark-purple), var(--purple));
  color: white;
  padding-left: 1.5rem !important;
  padding-right: 1rem !important;
}

.ai-button:hover {
  background-image: linear-gradient(90deg, var(--dark-purple), var(--dark-purple));
}

.ai-button span.ai {
  background-color: #fff;
  padding: 5px 5px;
  border-radius: 4px;
  color: var(--purple);
  font-size: var(--text-tiny);
  line-height: 1;
  position: relative;
  /* bottom: 1px; */
  font-weight: bold;
  display: inline-block;
}

.ai-button svg {
  /* font-size: 1.15rem; */
  transition: .1s;
}

nav .ai-button svg {
  font-size: 1.3rem;
  transform: rotate(90deg);
}

nav .ai-button.open svg {
  transform: rotate(-90deg);
}


.project-section-buttons {
  display: flex;
  gap: .75rem;
  margin-top: 2.5rem;
}

.secondary-button svg {
  flex-shrink: 0;
}

.project-container .home-cards-container {
  padding: 1.5rem 0;
}

.tool-box-container {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.secondary-create-column {
  /* border-bottom: 1px solid #eee; */
  flex-basis: 400px;
  flex-shrink: 0;
  height: initial;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6rem 1rem 1rem 1.75rem;
  background-color: #fafafa;
}

.expand-template-groups {
  font-size: 1.7rem;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: pointer;
}

.recommend-more-lenses.icon-button:hover {
  color: var(--purple);
}

.project-map-list-card.dragging-stack-item {
  background-color: white;
  min-width: 300px;
}

.project-map-list-card.dragging-stack-item .lenses-svg-container {
  gap: 1rem;
  padding-bottom: 0;
}

.project-map-list-card.dragging-stack-item .lenses-svg-container h4 {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: var(--text-small);
}

.lens-sidebar .section-header h4 {
  font-size: var(--text-small);
}

.section-header+.lens-tree-container {
  padding-top: .5rem;
}

.lens-tree+.lens-sidebar-section {
  padding-top: 0;
}

.reorganize-sections-icon {
  color: #aaa;
  flex-shrink: 0;
}

.project-sidebar-section .reorganize-sections-icon

/* .project-sidebar-section .add-sister-lens  */
  {
  opacity: 0;
  transition: 0s;
}

.project-sidebar-section:hover .reorganize-sections-icon

/* ,.project-sidebar-section:hover .add-sister-lens  */
  {
  opacity: 1;
  transition: .2s;
}

.lens-tree .lenses-svg-container {
  gap: .5rem;
}

a.nav-current-lens {
  background-color: #eaeaea;
}

.lens-sidebar-section a.nav-current-lens .lenses-svg-container h4 {
  /* font-family: var(--font-sans); */
}

.project-sidebar-section .project-map-list ul ul {
  padding-left: 1.25rem;
  margin-top: 0;
}

.project-sidebar-section .project-map-list ul:not(:first-child),
.lens-sidebar-section .project-map-list ul:not(:first-child) {
  margin-top: 0rem;
}

ul.tabs-nav {
  padding-left: 0;
}

.section-header .danger-button {
  font-size: var(--text-tiny);
  gap: .3rem;
  font-family: var(--font-system);
}

.section-header .danger-button svg {
  font-size: 1.2em;
  position: relative;
  bottom: 0px;
}

.expand-button-container {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
  padding: 0 1rem .75rem;
}

.expand-button-container .secondary-button {
  background-color: transparent;
  font-size: 13px;
  color: var(--light-gray);
  border: none;
  padding: 0;
  font-family: var(--font-serif);
  font-weight: normal;
  font-style: italic;
}

.lens-sidebar .expand-button-container {
  padding-right: 0;
}

.add-sister-lens {
  font-size: 18px;
  line-height: 30px;
  color: var(--lighter-gray);
  padding: 0.3rem;
  margin-left: auto;
  margin-right: .75rem;
  flex-shrink: 0;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid transparent;
}

.add-sister-lens:hover {
  background-color: white;
  border: 1px solid #eee;
}

.settings-section {
  padding: .5rem 0;
}

.settings-section h3 {
  margin-bottom: .5rem;
}

.settings-section>p {
  font-size: var(--text-small);
  margin-bottom: 1rem;
}

.input-with-button {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: 1rem 0;
}

.input-with-button input {
  width: 100%;
}

.editor-info h4 {
  font-size: var(--text-small);
  display: flex;
  align-items: center;
  gap: .45rem;
}

.editor-info p {
  font-size: var(--text-tiny);
}

#sortingDropdown {
  width: 100%;
}

#sortingDropdown button {
  font-family: var(--font-sans);
  padding: 0.7rem 1rem;
  color: var(--light-gray);
}

#sortingDropdown button:hover {
  /* color: var(--grayer); */
}

#sortingDropdown button svg {
  font-size: 1.2em;
}

.search-sort-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  /* width: 100%; */
}

ul.custom-sorting-context-menu li {
  /* font-family: var(--font-serif);
  font-weight: normal; */
  font-size: var(--text-small);
}

nav .primary-button.ai-button {
  width: fit-content;
  flex-shrink: 0;
}

nav .search-box-container {
  width: fit-content;
  margin: 0rem;
}

nav .search-box-container input {
  min-width: 28ch;
}

p.project-intro-text span.ai-span {
  padding: 5px 5px;
  border-radius: 4px;
  color: white;
  background-color: var(--purple);
  font-size: var(--text-tiny);
  line-height: 1;
  position: relative;
  font-weight: bold;
  display: inline-block;
  font-family: var(--font-sans);
}

p.project-intro-text span.new-section-span {
  padding: 5px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: middle;
  margin-left: 5px;
  font-size: 1.2em;
}

.empty-project-sidebar-container {
  padding: 1rem 3.5rem 1rem 1.75rem;
  color: var(--grayer);
  transition: color .1s;
}

.empty-project-sidebar-container:hover {
  color: var(--grayer);
}

.empty-project-sidebar-container h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  cursor: default;
}

.empty-project-sidebar-container p {
  font-size: var(--text-small);
  /* color: var(--grayer); */
  margin-bottom: 1rem;
  cursor: default;
}

.empty-project-sidebar-container p strong {
  font-family: var(--font-sans);
  font-weight: bold;
}

.blank-state-intro {
  margin: 0 auto;
  max-width: 60ch;
}

.blank-state-sections {
  max-width: 840px;
  margin: 2rem auto 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.blank-state-sections .home-container {
  background: white;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  align-self: self-start;
}

.blank-state-sections .home-container h4 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.blank-state-sections .home-container p {
  font-size: var(--text-small);
  color: var(--grayer);
}

.blank-state-sections .home-container .primary-button {
  width: 100%;
}

.sidebar-projects-empty {
  padding: 0 1rem;
}

.sidebar-projects-empty p {
  font-size: var(--text-small);
  margin-bottom: 1rem;
  color: var(--grayer);
}

.home-container-tool-panel>h1 {
  font-size: 1.45rem;
  margin-bottom: 0;
  color: var(--black);
}

.empty-lenses-main-section {
  max-width: 60ch;
}

.empty-lenses-main-section h1 {
  font-size: 1.45rem;
  color: var(--black);
}

.empty-lenses-main-section .primary-button {
  width: fit-content !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 1.5rem;
}

.context-menu-list li.context-menu-disabled {
  cursor: not-allowed;
  background-color: #aaa !important;
}

.context-menu-list li.context-menu-disabled:hover {
  background-color: #aaa !important;
}

.recommend-more-lenses svg {
  font-size: 1em;
}

.reactivate-subscription-container {
  /* padding: 0rem 0 1.5rem; */
  /* border-bottom: 1px solid var(--border-color); */
}

.reactivate-subscription-container button {
  margin-top: 1.25rem;
}

.my-account-nav-text-container {
  margin-left: .25rem;
}

.my-account-nav-text-container h4 {
  font-size: var(--text-tiny);
}

.my-account-nav-text-container p {
  font-size: var(--text-tiny);
  color: var(--light-gray);
  font-family: var(--font-serif);
  font-weight: normal;
  /* font-style: italic; */
}

h3.projectTitleHome {
  text-overflow: ellipsis;
  max-width: 25ch;
  overflow: hidden;
  white-space: nowrap;
}

#export-lens-button {
  margin-left: .65rem;
  margin-right: .65rem;
}

#export-lens-button svg {
  font-size: 1.1em;
}

.accordion-chevron {
  transform: rotate(90deg);
}

.project-home-nav-buttons {
  display: flex;
  padding-left: 3.5rem;
  width: 100%;
}

.project-home-nav-buttons .search-box-container {
  margin-left: auto;
}

.main-container.screenshot-lens {
  padding-top: 0;
}

.screenshot-lens .lens-container {
  padding: 3rem 2rem;
  height: fit-content;
  width: fit-content;
  flex: none;
  overflow: unset;
  margin-left: 2rem;
  min-width: 1000px;
}

.screenshot-lens.screenshot-pdf .lens-container {
  padding: 1rem 1rem;
  flex: none;
  overflow: unset;
  min-width: 1000px;
  margin-left: 0;
}


.screenshot-lens .lens-container .levels-lens {
  min-width: 800px;
}

.screenshot-lens .lens-container .types-lens {
  max-width: none;
  overflow-x: unset;
}

.website-form-container {
  margin-top: .75rem;
  margin-bottom: 2rem;
  width: 100%;
}

.website-form-container p {
  margin-bottom: .35rem;
  font-size: var(--text-small);
}

.website-form-container input {
  min-width: 400px;
}

.project-explorer-section-header {
  padding: 0;
}

.project-explorer-section-header button {
  font-family: var(--font-sans) !important;
}

.project-explorer-section-header button svg {
  font-size: 1.4em;
  position: relative;
  bottom: 1px;
}

.empty-project-insights {
  padding: 1.5rem 0;
}

.empty-project-insights h3 {
  margin-bottom: .75rem;
}

.project-insights-group {}

.project-insight-header {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .75rem;
}

.project-insight {
  margin-bottom: 1rem;
  padding: 1rem 1.4rem;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  border-radius: 3px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: start;
  position: relative;
  /* min-width: 45ch; */
  cursor: default;
}

.project-insight p {
  font-size: var(--text-small);
  max-width: 70ch;
  line-height: 1.7;
  color: var(--black);
}

.project-insight-annotate-links-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.project-insight-annotate-links-container a {
  color: var(--black);
  text-decoration: none;
  /* font-style: italic; */
  font-size: var(--text-xs);
}

.project-insight-annotate-links-container a span {
  color: var(--light-gray);
}

.project-insight-annotate-links-container .icon-button {
  color: #aaa;
  padding: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  gap: .15rem;
  font-style: normal;
}

.project-insight-annotate-links-container .icon-button svg {
  font-size: 1.35rem;
}

.project-insight-annotate-links-container .icon-button:hover {
  color: #ffbe23;
}

.input-button-container {
  display: flex;
}

.input-button-container input {
  border-radius: 4px 0 0 4px;
  border-right: none;
  width: 100%;
  font-size: var(--text-small);
}

.input-button-container button {
  border-radius: 0 4px 4px 0;
  flex-shrink: 0;
  font-family: var(--font-system);
  font-size: var(--text-small);
}

.project-annotations-container {
  margin-top: .15rem;
  padding: .75rem 1rem .75rem;
  width: 100%;
  /* border-top: 1px solid #eee; */
  background-color: #fbfbfb;
  border-radius: 2px;
  border: 1px solid #eee;
  width: 100%;
}

.project-annotations-container:hover {
  background-color: #f6f6f6;
}

.project-annotation:not(:last-child) {
  margin-bottom: 1.15rem;
}

.project-annotation-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .15rem;
}

.project-annotation-title h4 {
  font-size: var(--text-small);
  /* color: var(--copy-lighter); */
}

.project-annotation>p {
  font-size: var(--text-tiny);
  color: var(--copy-lighter);
}

.project-insight .most-recent-comment {
  text-decoration: none;
  width: 100%;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

.project-context-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  /* padding: 1rem 0; */
  justify-content: space-between;
}

.project-context-container-main label {
  font-family: var(--font-sans);
  margin-bottom: .75rem;
  display: block;
}

.project-context-container-main textarea {
  width: 100%;
  /* font-size: var(--text-small); */
  /* margin-bottom: .5rem; */
}

.project-context-container-main {
  max-width: 70ch;
}

.project-context-container-helpers {
  background-color: #fafafa;
  border: 1px solid var(--border-color);
  padding: 1.25rem 1.25rem;
  border-radius: 4px;
  align-self: flex-start;
  max-width: 60ch;
}

.project-context-container-helpers h4 {
  font-size: 1rem;
  margin-bottom: .25rem;
}

.project-context-container-helpers ol {
  padding-left: .25rem;
  margin: .75rem 0;
}

.project-context-container-helpers p,
.project-context-container-helpers li {
  font-size: var(--text-small);
  color: var(--grayer);
  margin-bottom: .25rem;
}

.extra-context-textarea {
  margin-bottom: 1.15rem;
}

.extra-context-textarea:nth-child(2) {
  padding-left: 1rem;
}

.extra-context-textarea:nth-child(3) {
  padding-left: 2rem;
}

.extra-context-textarea textarea:read-only {
  background-color: #fafafa;
  font-size: var(--text-small);
  color: var(--light-gray);
}

.extra-context-textarea h3 {
  margin-bottom: .0 !important;
  font-size: 1.05rem !important;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.extra-context-textarea h3 svg {
  color: var(--lighter-gray);
}

.extra-context-textarea h3 span.context-section-title {
  position: relative;
  left: 7px;
  text-transform: capitalize;
  font-size: 13px;
  display: inline-block;
  background-color: #f5f5f5;
  color: var(--copy-lighter);
  font-weight: normal;
  font-style: italic;
  padding: .15rem .3rem;
  border-radius: 2px;
  font-family: var(--font-serif);
}

#showFullContext {
  color: var(--light-gray);
  margin-left: auto;
  /* margin-top: 0 !important; */
  /* width: 100%; */
  margin-bottom: 1.5rem;
  justify-content: center;
}

#showFullContext svg {
  font-size: 1.3em;
}

#showFullContext:hover {
  color: var(--black);
}

span.button-number {
  width: 1.4em;
  height: 1.4em;
  border-radius: 100%;
  background-color: #eee;
  font-size: .9em;
  /* color: #888; */
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  /* font-family: var(--font-serif); */
  /* font-style: italic; */
  font-weight: bold;
}

.context-button-container {
  width: 100%;
  display: flex;
  margin-bottom: -1rem;
}

.tab-content-top-button-container {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  padding: 0 0 .25rem 0;
  gap: 1rem;
  max-width: 500px;
  margin-left: auto;
}

.tab-content-top-button-container button {
  font-family: var(--font-sans);
}

.tab-content-top-button-container button svg {
  font-size: 1.2em;
}

form .template-option {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0.25rem 0;

}

.template-option input[type="radio"] {
  display: none;
}

.template-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem .5rem;
  margin-top: 1.5rem;
}

form#projectForm .template-option label {
  margin-bottom: 0;
  font-family: var(--font-sans);
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.template-option input[type="radio"] {
  display: none;
}

form#projectForm .template-option input[type="radio"]:checked+label {
  border: 1px solid #aaa;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, .05);
}

form#projectForm .template-option label span {
  font-size: var(--text-small);
  display: inline-block;
  margin-bottom: .25rem;
}

form#projectForm .template-option label p {
  font-family: var(--font-serif);
  font-size: var(--text-xs);
  color: var(--copy-lighter);
}

.project-card .create-custom-lens,
.project-card .create-document {
  color: var(--light-gray);
  font-size: var(--text-tiny);
}

.project-card .create-document {
  gap: .35rem;
}

.project-card .create-custom-lens svg,
.project-card .create-document svg {
  font-size: 1.2em;
}

.project-card .create-custom-lens:hover,
.project-card .create-document:hover {
  /* text-decoration: underline; */
  color: var(--black);
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-weight: bold;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor svg {
  font-size: 1.1em;
  position: relative;
  bottom: 1px;
}

.homepage-recommender-container {
  padding: 3rem 0 6rem;
  width: 100%;
  margin-bottom: 2rem;
}

.recent-maps {
  padding-top: 1rem;
  padding-bottom: 3rem;
  /* border-top: 2px dashed var(--border-color); */
}

.homepage-recommender-inner-container {
  margin: 0 auto;
  max-width: 85ch;
  padding-left: 100px;
}

.homepage-recommender-container h1 {
  margin-bottom: .5rem;
  color: var(--black);
  font-size: 1.7rem;
  font-family: var(--font-serif);
  font-weight: normal;
  max-width: 37ch;
}

.homepage-recommender-inner-container>p {
  font-size: var(--text-tiny);
  color: var(--copy-lighter);
  max-width: 65ch;
}

.homepage-recommender-container textarea {
  width: 100%;
  /* font-size: var(--text-small); */
}

.homepage-recommender-inner-container>p span svg {
  display: inline-block;
  font-size: 1.3em;
  position: relative;
  top: 4px;
  left: 2px;
}

.recommender-button-container {
  display: flex;
  flex-direction: row-reverse;
  align-self: flex-start;
  flex-shrink: 0;
}

.recommender-button-container .ai-button {
  display: flex;
  align-items: center;
  padding: .75rem 1.25rem !important;
  gap: .45rem;
  border-radius: 4px;
  font-size: 1.05rem;
}

.recommender-button-container .ai-button svg {
  flex-shrink: 0;
}

.recommender-textarea-container {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
  position: relative;
}

.home-sidebar .section-header h3 {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.home-container #recommendations {
  display: grid;
  grid-template-columns:
    repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1rem;
}

.home-recommendations-container {
  padding: 3rem 0 0;
}

.recommendations-helper-buttons {
  padding: 0 0 1.5rem;
}



.home-container #recommendations .recommendation {
  width: 100%;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .02);
  border: 1px solid #eee;
  border-radius: 4px;
  align-self: flex-start;
  transition: .15s;
  position: relative;
  background-color: white;
  opacity: 0;
  animation: fadeInUpwards 0.3s ease forwards;
}

.home-container #recommendations .recommendation a.recommendation-info {
  padding: 1.35rem;
  display: block;
  color: var(--black);
  text-decoration: none;
}

.home-container #recommendations .recommendation .button-container {
  padding: 1.35rem;
  padding-top: 0;
  width: 100%;
}

.home-container #recommendations .recommendation .button-container button {
  width: 100%;
  font-size: var(--text-small);
  display: flex;
  align-items: center;
  gap: .35rem;
  justify-content: center;
  border-radius: 5px;
  background-image: linear-gradient(90deg, #eee, #eee);
  color: var(--light-gray);
  transition: .1s;
}

.home-container #recommendations .recommendation .button-container button .loading-indicator.not-fixed {
  width: fit-content;
  margin-right: .3rem;
}

.home-container #recommendations .recommendation .button-container button .loading-indicator.not-fixed svg {
  height: 24px;
  width: 24px;
}


.home-container #recommendations .recommendation .button-container button:not([disabled]):hover {
  background-image: linear-gradient(90deg, var(--dark-purple), var(--purple));
  color: white;
}

.home-container #recommendations .recommendation .button-container a {
  padding-top: .75rem;
  padding-bottom: .75rem;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  position: relative;
}

.home-container #recommendations .recommendation .button-container a svg {
  font-size: 1.25em;
  /* position: absolute;
  right: 1rem; */
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

#recommendations.fade-out {
  animation: fadeOut 0.3s ease forwards;
}


.home-container #recommendations .recommendation:hover {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  background-color: #fafafa;
  border: 1px solid #ddd;
}

.home-container #recommendations .recommendation.animate-recommendation {
  animation-delay: var(--animation-delay, 0s);
  /* Default to 0s if the variable isn't provided */
}

.home-container #recommendations .recommendation h4 {
  font-size: var(--text-small);
}

.home-container #recommendations .recommendation p {
  font-size: var(--text-tiny);
  color: var(--copy-lighter);
}

.home-container #recommendations .recommendation .recommendation-title {
  margin-bottom: .3rem;
}

@keyframes fadeInUpwards {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ui-autocomplete {
  /* position: absolute; */
  cursor: default;
  z-index: 1001 !important;

  /* Above other elements */
}

.ui-menu {
  max-height: 240px;
  max-width: 61ch;
  /* 55 */
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #eee !important;
  border-top: none !important;
  border-radius: 0 0 4px 6px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .08);
}

.ui-menu .ui-menu-item-wrapper {
  padding: 1.1rem 1.25rem;
  background: white;
  border-bottom: 1px solid #eee;
}

/* Hover State Styling */
.ui-menu .ui-menu-item-wrapper:hover {
  background-color: #fafafa;
  border-bottom: 1px solid #eee;
  color: inherit;
}

.ui-menu .autocomplete-custom-item h4 {
  color: var(--black) !important;
  font-size: 1rem;
  line-height: 1.7;
  font-family: var(--font-serif);
}

.ui-menu .autocomplete-custom-item p {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--lighter-gray);
  /* font-style: italic; */
}

#ai-button .loading-indicator {
  width: 20px;
}

.view-all-container {
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.view-all-container a {
  width: fit-content;
}

span.count {
  color: var(--lighter-gray);
  font-family: var(--font-serif);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: var(--text-tiny);
  display: inline-block;
  margin-left: auto;
  /* font-style: italic; */
  /* font-weight: normal; */
  position: relative;
  top: 1px;
}

.explore-nav-item.selected svg {
  color: var(--purple) !important;
}

.lenses-nav-item.selected svg {
  color: var(--link-color) !important;
}

.projects-nav-item.selected svg {
  color: var(--green)
}

.home-sidebar-nav-items {
  overflow-y: auto;
}

.home-sidebar-footer {
  margin-top: auto;
  width: 100%;
  padding: .15rem 1rem 0;
}

.home-sidebar-footer>.slack-link {
  font-size: var(--text-tiny);
  font-family: var(--font-sans);
  color: var(--copy-lighter);
  text-decoration: none;
  margin-bottom: 1rem;
}

.home-sidebar-footer>.slack-link:hover {
  text-decoration: underline;
  color: var(--black);
}

.home-sidebar-footer>p {
  color: var(--copy-lighter);
  font-size: var(--text-tiny);
  font-style: italic;
}

.recommend-sections-button {
  padding-left: 1rem !important;
  color: white !important;
  border: none !important;
}

.recommend-ai-button:disabled {
  background: var(--lighter-gray);
}

.recommend-ai-button:disabled:active {
  transform: scale(1);
}

.extra-context-textarea-title {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}

.create-container form .extra-context-textarea-title button.secondary-button {
  margin-top: 0;
  font-size: var(--text-tiny);
  color: var(--light-gray);
}

.create-container form .extra-context-textarea-title button.secondary-button:hover {
  color: var(--black);
}

.remove-custom-tag {
  margin-left: auto;
  font-size: .9em;
}

span.lens-name-loading-template {
  display: block;
  font-weight: bold;
  font-family: var(--font-sans);
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

span.lens-name-loading-text {
  font-size: 1rem;
}

.ui-widget button {
  font-family: var(--font-sans);
}

#editorjs {
  padding: 0 1rem;
  font-size: 17px;
}

h1.ce-header {
  margin-bottom: 1rem !important;
}

.ce-block a {
  color: var(--link-color) !important;
  font-weight: bold;
}

#document-title {
  margin: 0 auto;
  max-width: calc(650px + 2rem);
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.project-section-document-list {
  margin-top: .15rem;
  margin-bottom: 1rem;
}

.project-section-document-list a {
  display: flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
  font-size: var(--text-small);
  padding: .65rem .75rem;
  background-color: #fafafa;
  border-radius: 4px;
  transition: .1s;
  border: 1px solid #f1f1f1;
  margin-bottom: .25rem;
  color: var(--black);
}

.project-section-document-list a:hover {
  background-color: #f5f5f5;
}

.project-section-document-list a svg {
  font-size: 1.1em;
  /* color: var(--light-gray); */
}

.lens-container ul .textBullet-text a {
  /* text-decoration: underline; */
  color: var(--link-color);
  font-weight: bold;
}

.lens-container ul .textBullet-text a:hover {
  text-decoration: underline;
}

.lens-container ul .textBullet-text p {
  font-size: var(--text-small);
}

.medium-editor-toolbar-anchor-preview {
  border-radius: 4px !important;
  padding: 3px !important;
}

.medium-editor-toolbar-anchor-preview-inner {
  font-family: var(--font-serif);
  margin-bottom: 5px !important;
  font-size: var(--text-tiny) !important;
  color: white !important;
}

.medium-editor-element {
  min-height: auto !important;
}

.medium-editor-toolbar-form {
  border-radius: 4px !important;
}

.medium-editor-toolbar-save {
  font-size: 19px !important;
}

.medium-editor-action-anchor {
  font-size: 18px !important;
}

.medium-editor-toolbar-close {
  position: relative;
  bottom: 1px;
}

button.icon-button.open-comment-panel {
  font-size: var(--text-tiny);
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor img {
  width: 1.4rem;
  height: 1.4rem;
  margin-right: .16rem;
}

.p-icon svg {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2em;
  padding-left: .2rem;
}


.main-create-column {
  display: none;
}

.project-nav-tabs {
  opacity: .9;
  /* Apply the animation */
  animation: fadeInUpwards 0.3s ease-in-out;
}

/* .recommender-button-container .button-text {
  display: inline-block;
  width: 66px;
  text-align: left;
  overflow: hidden;
} */

#progressBar-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-height: 5px;
  overflow: hidden;
}

.recommendation-actions-container {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.recommendation-action-card {
  width: 100%;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .02);
  color: var(--black);
  text-decoration: none;
  padding: 1.35rem;
  border: 1px solid #eee;
  border-radius: 4px;
  align-self: flex-start;
  transition: .15s;
  position: relative;
  background-color: white;
  opacity: 0;
  animation: fadeInUpwards 0.3s ease forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}

.recommendation-action-card img {
  width: 24px;
  height: auto;
}

.recommendation-action-card p {
  font-size: var(--text-tiny);
  color: var(--copy-lighter);
  margin-top: .1rem;
}

.home-container .recommendation-action-card:hover {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  background-color: #fafafa;
  border: 1px solid #ddd;
}

#register-form .form-group {
  margin-bottom: 1rem;
}

nav .upgrade-button {
  margin-right: 1.5rem;
  gap: .5rem;
}

.home-sidebar .upgrade-button {
  justify-content: center;
  padding: .75rem;
  margin-top: .75rem;
  margin-bottom: 1rem;
}

.upgrade-button img {
  width: 22px;
  height: auto;
}


.pricing-page-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 1rem;
}

.pricing-grid {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); */
  display: flex;
  padding: 0 0 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pricing-grid>div {
  flex-grow: 1;
  flex-basis: 30%;
  min-width: 200px;
}

.pricing-grid .plan-title {
  margin-bottom: 1rem;
}

.pricing-grid .plan-title p {
  color: var(--light-gray);
  font-size: var(--text-small);
}

.pricing-grid h3 {
  font-size: 1.3rem !important;
  display: flex;
  align-self: center;
  margin-bottom: .2rem;
}

.pricing-grid>div {
  width: 100%;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .02);
  color: var(--black);
  text-decoration: none;
  padding: 1.35rem;
  border: 1px solid #eee;
  border-radius: 4px;
  align-self: flex-start;
  transition: .15s;
  position: relative;
  background-color: white;
}

.plan-description {
  font-size: var(--text-small);
  color: var(--copy-lighter);
  margin-bottom: 1rem;
}

.pricing-page-container .register-benefits {
  margin-top: 1.5rem;
}

.pricing-page-container .register-benefits ul {
  margin-bottom: 0;
}

.pricing-page-container .register-benefits ul li {
  font-size: var(--text-small);
  color: var(--copy-lighter)
}

.pricing-page-container .ui-tabs .ui-tabs-nav {
  /* margin: 0 auto; */
  width: fit-content;
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.pricing-page-container .ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: 0;
}

.pricing-page-container h1 {
  /* text-align: center; */
}

.pricing-page-container #monthly,
.pricing-page-container #annual {
  animation: fadeInUpwards 0.3s ease-in-out;
}

.current-plan-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f1f1f1;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--lighter-gray);
}

.cancel-sub-container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
  /* justify-content: center; */
  margin-bottom: 1.25rem;
}

.support-email-container {
  margin-bottom: 3rem;
}

.support-email-container p {
  color: var(--light-gray);
  font-size: var(--text-small);
  /* font-style: italic; */
}

.cancel-sub-container button.cancel-subscription {
  border: none;
  padding: 0;
  color: var(--light-gray);
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: var(--text-small);
  background-color: transparent;
}

.cancel-sub-container button.secondary-button {
  /* margin-top: .5rem; */
}

.cancel-sub-container button.cancel-subscription:hover {
  text-decoration: underline;
}

.types-lens th {
  /* display: flex; */
  align-items: center;
  gap: 1rem;
}

.types-lens th>div {
  display: inline-block;
}

.types-lens td>div {
  display: flex;
  align-items: center;
  min-height: 100px;

}

.types-lens .icon-button {
  vertical-align: middle;
  margin-left: auto;
  float: right;
  position: relative;
  bottom: 2px;
  padding: 4px;
  font-size: 1.2rem;
  border: 1px solid #eee;
}

.types-lens td .icon-button {
  position: absolute;
  bottom: 6px;
  right: 6px;
}

.home-nav-items {
  height: 100%;
  margin: 0 1.5rem;
  display: flex;
}

.home-nav-items a {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0.75rem .85rem;
  margin: 0;
  flex-shrink: 0;
  gap: .5rem;
}

.home-nav-items a.active {
  background-color: #f1f1f1;
}

.home-nav-items a:hover {
  background-color: #f1f1f1;
  transition: .1s;
}

.phases-lens {
  padding: 1rem 0;
  width: 100%;
  max-width: calc(1000px + 2rem);
  margin: 2.5rem auto 0;
  /* opacity: .98; */
  /* min-height: 100vh; */
}

.phases-lens.new {
  padding: 2.5rem 0 1rem;
  width: 100%;
  max-width: 2000px;
  margin: 3rem auto 2rem;
  overflow-x: auto;
  position: relative;
}

.screenshot-lens .phases-lens.new {
  cursor: grab;
  width: fit-content;
  padding-right: 7rem;
  margin: 3rem 2rem;
}

.animatedPhases {
  animation: fadeInUpwards .3s ease-in-out forwards;
}

.screenshot-lens .animatedPhases {
  animation: none;
}

.animatedPhase {
  opacity: 0;
  /* Start invisible to ensure animation visibility */
  animation-fill-mode: forwards;
  /* Ensure the element remains in the final state */
}

.screenshot-lens .animatedPhase {
  opacity: 1;
}

.phase-container {
  padding: .75rem 1.8rem;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  border-radius: 3px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid #eee;
  max-width: 65ch;
  width: 100%;
}

.phases-lens.new .phases-container {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.phases-lens.new .phase-container {
  max-width: 40ch;
  /* overflow-y: auto; */
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
  padding: .75rem .85rem;
}

.phase-step-box-container {
  height: 500px;
  display: grid;
  place-content: center;
}

.phase-title {
  width: 100%;
  background-color: #fafafa;
  padding: .55rem 2rem .55rem 1.5rem;
  display: flex;
  align-items: center;
  border: 2px solid #f4f4f4;
  justify-content: center;
  border-radius: 4px;
  position: relative;
}

.phase-title .phases-arrow {
  position: absolute;
  font-size: 2.6em;
  right: -1.5rem;
  z-index: 3;
  color: #d5d5d5;
}

.phase-title .icon-button {
  position: absolute;
  top: -1rem;
  left: .5rem;
  vertical-align: middle;
  margin-left: auto;
  padding: 4px;
  font-size: 1.2rem;
  border: 1px solid #eee;
  background-color: #fff;
}

.phase-outer-container:last-of-type .phase-title svg {
  display: none;
}

.phase-title span {
  display: grid;
  place-content: center;
  margin-right: .75rem;
  font-family: "Inter";
  width: 36px;
  height: 36px;
  background-color: #fff;
  border: 2px solid var(--border-color);
  border-radius: 100%;
  font-weight: bold;
  flex-shrink: 0;
}

.phase-container ul {
  padding-left: .5rem;
}

.phases-lens.new .phase-container ul {
  padding-left: 0rem;
}

.phase-step-box {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .08);
  width: 180px;
  height: 180px;
  display: grid;
  place-content: center;
  font-family: "Inter";
  font-weight: 800;
  color: #d5d5d5;
  border-radius: 10px;
  background: white;
  flex-shrink: 0;
}

.phase-step-box p {
  font-size: 4.4rem;
  width: fit-content;
}


.phase-container .accordion-title {
  padding-top: 1rem;
  padding-bottom: 1rem;
  /* cursor: default; */
  gap: 1rem;
}

.phase-container .accordion-title svg {
  cursor: pointer;
}

.phase-container .accordion-title.open {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.new-phase-button-container {
  padding: 0rem;
  margin-left: 1.5rem;
}

.new-phase-button-container button.add-something-button {
  font-size: 1rem;
  height: 100%;
  background-color: #fafafa;
  flex-direction: column;
  padding: 0 1.75rem;
  border: 2px dashed var(--border-color);
}

.phases-expand-collapse-button-container {
  position: fixed;
  bottom: 2.2rem;
  right: 3.5rem;
}

.phases-expand-collapse-button-container button {
  color: var(--light-gray);
}

.admin-dashboard-container {
  display: flex;
  flex-direction: row;
  height: calc(100vh - 4rem);
  /* Adjust the height as necessary */
  overflow: hidden;
  /* Prevents scrolling outside the columns */
}


.template-groups,
.config-groups {
  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  padding: 1rem;
  /* Sets maximum width for the first two columns */
  overflow-y: auto;
  /* Enables vertical scrolling */
  height: 100%;
  border-right: 1px solid var(--border-color);
  /* Full height to enable independent scrolling */
}

.template-groups {
  padding: 0;
  flex-basis: 18%;
  background-color: #f1f1f1;
  /* padding-top: 1rem; */
}

.config-groups {
  background-color: #fafafa;
  flex-basis: 22%;
}

.config-groups .config-group svg {
  flex-shrink: 0;
}

.lens-configurations {
  width: 100%;
  /* Sets maximum width for the first two columns */
  overflow-y: auto;
  /* Enables vertical scrolling */
  height: 100%;
}

.template-groups a {
  width: 100%;
  /* box-shadow: 0 0 14px 0 rgba(0, 0, 0, .02); */
  color: var(--black);
  text-decoration: none;
  padding: 1rem 1.35rem;
  border-bottom: 1px solid #eee;
  /* border-radius: 4px; */
  align-self: flex-start;
  transition: .15s;
  position: relative;
  background-color: white;
  display: block;
}

.config-groups a {
  width: 100%;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .02);
  color: var(--black);
  text-decoration: none;
  padding: 1rem 1.35rem;
  border: 1px solid #eee;
  border-radius: 4px;
  align-self: flex-start;
  transition: .15s;
  position: relative;
  background-color: white;
  display: block;
  margin-bottom: 1rem;
}

.config-groups a:hover {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .04);
  background-color: #fafafa;
  border: 1px solid #ddd;
}

.template-groups a:hover {
  background-color: #fafafa;
}

.template-groups a h3 {
  font-size: var(--text-small);
}

.config-groups a h4 {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: var(--text-small);
}


.config-groups a p,
.template-groups a p {
  font-size: var(--text-xs);
  margin-top: .25rem;
  color: var(--gray);
}

#lensConfigurationsContainer,
#templateGroupConfigurationsContainer {
  margin: 3rem auto;
  padding: 0 2.5rem;
  width: 100%;
  max-width: 1000px;
}

.top-page-form fieldset>div.admin-templates-lens-list {
  margin: .75rem 0 0;
  gap: .5rem;
  flex-wrap: wrap;
}

.admin-templates-lens-list input[type="checkbox"]+label {
  display: flex;
  align-items: center;
  gap: .45rem;
  opacity: .4;
  font-family: var(--font-sans);
  color: var(--copy-lighter);
  /* font-size: var(--text-tiny); */
  cursor: pointer;
  padding: .75rem;
  border: 1px solid transparent;
  border-radius: 4px;
  filter: grayscale(1);
}

.admin-templates-lens-list input[type="checkbox"]+label:hover {
  border: 1px solid var(--border-color);
}

.admin-templates-lens-list input[type="checkbox"] {
  display: none;
}

.admin-templates-lens-list input[type="checkbox"]+label svg {
  font-size: 1.75rem;
  flex-shrink: 0;

}

.admin-templates-lens-list input[type="checkbox"]:checked+label {
  opacity: 1;
  filter: grayscale(0);
  border: 1px solid var(--border-color)
}

.lens-configurations .accordion-container {
  padding: .25rem 0;
  border-bottom: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.lens-configurations .accordion-container label {
  margin-bottom: .5rem;
  display: block;
  margin-top: 1.5rem;
  font-size: var(--text-small);
  color: var(--light-gray);
}

.lens-configurations #configGroupForm {
  padding-bottom: 3rem;
  border-bottom: 3px dashed var(--border-color);
}

.lens-configurations textarea {
  font-size: var(--text-small);
}

.lens-configuration-actions-bar {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row-reverse;
  margin-bottom: 1.5rem;
  gap: .5rem;
}

.lens-configuration-actions-bar button {
  color: var(--light-gray);
}

.template-group h3 {
  display: flex;
  gap: .35rem;
  align-items: center;
}


.template-group h3 svg {
  flex-shrink: 0;
}


.config-groups a.invisible-group,
.template-group a.invisible-group {
  color: var(--light-gray);
}

.config-groups a.active {
  border: 1px solid var(--black);
}

#configGroupsContainer>form>button,
.template-groups>form>button {
  display: flex;
  align-items: center;
  margin-left: auto;
  border-radius: 4px;
  gap: .35rem;
  color: var(--light-gray);
}

#configGroupsContainer>form>button:hover {
  color: var(--black);
}

.phase-outer-container {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1rem;
  max-width: 80ch;
  width: 100%;

}

.phases-lens.new .phase-outer-container {
  /* margin-top: -40px; */
  max-width: 42ch;
  flex-direction: column-reverse;
  flex-shrink: 0;
  /* max-width: fit-content; */
  align-self: flex-start;
}

.phases-lens.new .phase-outer-container:nth-of-type(2n) {
  flex-direction: column-reverse;
  /* align-self: flex-end; */
}

.phase-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.phase-outer-container .phase-actions {
  opacity: 0;
  transition: .2s;
  /* color: var(--lighter-gray); */
}

.phase-outer-container:hover .phase-actions {
  opacity: 1;
  transition: .2s;
}

.trial-notice {
  font-style: italic;
  font-size: var(--text-small);
  align-self: center;
  margin-right: 1rem;
  color: var(--light-gray);
}

.attach-button-container {
  flex-shrink: 0;
}

.recommender-textarea-container-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}



.attached-documents-container {
  display: flex;
  gap: .5rem;
  margin: .5rem 0;
  flex-wrap: wrap;
}

.attached-document {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 3px 8px;
  border-radius: 5px;
  border: 1px solid #eee;
  width: fit-content;
  color: var(--gray);
  background-color: #fafafa;
}

.attached-document span {
  color: var(--black);
  font-size: var(--text-tiny);
}

.recommender-textarea-extra {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.recommender-textarea-extra>button {
  /* align-self: flex-end; */
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: var(--text-small);
  padding: .4rem;
  margin-top: .2rem;
  flex-shrink: 0;
  margin-left: auto;
}

.recommender-textarea-extra>button svg {
  font-size: 11px;
}

.create-form-template-title-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.create-form-template-title {
  /* flex-shrink: 0; */
}

.create-form-template-title-container .attach-button-container {
  margin-left: auto;
  flex-shrink: 0;
}

.create-form-template-title-container .attach-button-container button {
  /* font-size: var(--text-tiny);
  display: flex;
  gap: .35rem;
  align-items: center;
  background-color: #fafafa; */

}

.create-form-template-title-container .attach-button-container button svg {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Define the custom theme for Tippy.js tooltips */
.tippy-box[data-theme~='lens-type-tooltip'] {
  background-color: #fafafa;
  border: 1px solid #f1f1f1;
  /* Custom background color */
  color: #111;
  /* Custom text color */
  border-radius: 3px;
  text-align: center;
  font-size: var(--text-small);
  padding: .35rem .25rem;
}

.tippy-box[data-theme~='lens-type-tooltip'] .tippy-content {
  font-family: var(--font-serif) !important;
}

.create-buttons-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  align-items: center;
  margin-left: 1rem;
}

.file-list {
  max-height: 360px;
  overflow-y: auto;
  padding-right: .75rem;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* padding: 3rem .75rem 3rem 0; */
}

.file-list .file-item {
  padding: .75rem 2rem .75rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5px;
}

.file-list .file-item svg {
  flex-shrink: 0;
  font-size: 1.2rem;
}

.file-list .file-item:hover {
  background-color: #fafafa;
}

.file-list .file-item p.file-title {
  font-size: var(--text-small);
}

.file-list .file-item p.date-added {
  /* font-style: italic; */
  font-size: var(--text-tiny);
  color: var(--lighter-gray);
}

.file-selector {
  display: grid;
  place-items: center;
}

.close-minimial-create-screen {
  position: absolute;
  right: 4rem;
  top: -1.5rem;
  width: fit-content;
}

.lens-preview-image {
  margin-top: 2rem;
  margin-left: 2rem;
  width: 1200px;
  height: 630px;
  /* border: 1px solid #000; */
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 50px 60px 100px 60px;
}

.lens-preview-image svg {
  font-size: 5rem;
  flex-shrink: 0;
}

.lens-preview-image h1 {
  font-size: 2.7rem;
}

.lens-preview-image p {
  font-size: 1.75rem;
  color: var(--grayer);
  margin-top: 1.5rem;
}

.lens-preview-image .lens-info {
  display: flex;
  margin-top: auto;
  gap: 1.75rem;
  align-items: center;
  max-width: 90%;
}

.lens-preview-image img {
  width: 175px;
  opacity: .9;
  margin-left: auto;
}

.recommender-textarea-extra>button[x-cloak] {
  display: none !important;
}

[x-cloak] {
  display: none !important;
}

.lens-watermark {
  width: 100%;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.lens-watermark-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  padding-bottom: 1.5rem;
}

.lens-watermark-inner img {
  width: 140px;
  margin-bottom: 1rem;
}

.lens-watermark-inner p {
  font-size: var(--text-xs);
  color: var(--lighter-gray);
}

.share-buttons-container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
}

.share-buttons-container button {
  display: flex;
  gap: .35rem;
  flex-shrink: 0;
  flex-grow: 1;
  align-items: center;
  padding: .75rem;
  justify-content: center;
  width: 50%;
}

.share-buttons-container button:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.share-buttons-container button svg {
  font-size: 1.2em;
}

.share-buttons-container a {
  flex-shrink: 0;
  flex-grow: 1;
  width: 50%;
  justify-content: center;
  gap: .35rem;
  /* color: white;
  background-color: black; */
}

.share-buttons-container a.disabled {
  background-color: #fafafa !important;
  color: #888 !important;
  pointer-events: none;
  cursor: not-allowed;
}


.share-buttons-container a:hover {
  background-color: #111;
  color: white;
}

.share-buttons-container a svg {
  font-size: 1.2em;
}

.create-screen-footnote {
  padding: 1rem 0rem;
  border-top: 2px dashed var(--border-color);
  margin-top: 4rem;
  max-width: 60ch;
  font-size: var(--text-tiny);
}

.create-screen-footnote p {
  font-size: var(--text-tiny);
}

#form-templateTitle a {
  color: var(--link-color);
  text-decoration: none;
}

#form-templateTitle a:hover {
  text-decoration: underline;
}

.modal-container h2 span {
  position: relative;

}

#open-ai-chat,
#open-ai-explore-chat {
  display: flex;
  align-items: center;
  padding-left: 1rem !important;
  gap: .5rem;
}

#open-ai-chat svg,
#open-ai-explore-chat svg {
  transform: rotate(0deg);
}

#file-upload-modal h2 span {
  position: relative;
  top: -10px;
  margin-left: .25rem;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: var(--text-xs);
  background-color: #EDB662;
  color: white;
}

.ai-sidebar {
  padding: 0;
}

.ai-sidebar-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 5.5rem);
  overflow: hidden;
}

.ai-sidebar-container .messages-container {
  display: flex;
  flex-direction: column-reverse;
  flex-grow: 1;
  padding: 1rem;
  gap: .5rem;
  overflow: auto;
}

.ai-sidebar-container .messages-container .recreate-message {
  background-color: white;
  border: 1px solid var(--border-color);
  padding: .5rem .75rem;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.recreate-message p {
  font-size: var(--text-small);
  line-height: 1.5;
}

.recreate-message .version-badge {
  flex-shrink: 0;
  padding: 2px 5px;
  border-radius: 2px;
  background-color: #fafafa;
  color: var(--lighter-gray);
  font-family: Inter;
  font-size: var(--text-tiny);
  font-weight: 700;
  align-self: flex-start;
}

.ai-sidebar-container .messages-container .recreate-message.current-variation {
  border: 1px solid #dfdfdf;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 3px 0px;
}

.recreate-message.current-variation .version-badge {
  background-color: var(--purple);
  color: white;
}

.ai-sidebar-container textarea {
  width: 100%;
  font-size: var(--text-small);
  line-height: 1.4;
  padding-bottom: 2rem;
  overflow-y: auto;
  box-sizing: border-box
}

.ai-sidebar-textarea-container {
  margin-top: auto;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.ai-sidebar-textarea-container button {
  /* position: absolute; */
  /* bottom: 2rem;
  right: 1.5rem; */
  display: flex;
  align-items: center;
  gap: .3rem;

}

.ai-sidebar-textarea-container button svg {
  font-size: 1.2em;
}

.loading-recreate-message {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: .5rem;
}

.loading-recreate-message p {
  font-size: var(--text-tiny);
  color: var(--lighter-gray);
}

.loading-recreate-message .loading-indicator.not-fixed {
  width: fit-content;
}

.loading-recreate-message svg {
  width: 20px;
  height: 20px;
}

.ai-sidebar-textarea-container .textarea-instructions p {
  font-size: var(--text-xs);
  color: var(--lighter-gray);
}

.messages-container-empty {
  margin: auto 0;
  padding: 1rem;
  text-align: center;
}

.messages-container-empty p {
  font-size: var(--text-small);
  color: var(--light-gray);
}

.upgrade-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  background-color: rgb(253, 247, 237);
  color: rgb(183, 125, 42);
  padding: 0.35rem 1.2rem;
  border-radius: 4px;
  margin: 0rem auto 1rem;
  border-left: 4px solid rgb(237, 182, 98);
  position: relative;
  gap: 2rem;
}

.upgrade-banner svg {
  font-size: 1.5em;
  color: #f7bd4a;
  position: relative;
  top: 1px;
  flex-shrink: 0;
}

.upgrade-banner p {
  font-size: 1.05rem;
}

.upgrade-banner .secondary-button {
  font-size: 1rem;
  color: rgb(225, 154, 52);
  border: 1px solid #e3c499;
  padding: .65rem .85rem;
  font-weight: bold;
}

.upgrade-banner .secondary-button img {
  width: 20px;
  height: 20px;
}

.price-badge {
  border-radius: 5px;
  font-size: var(--text-tiny);
  /* font-family: Inter; */
  font-weight: 500;
  background-color: rgba(128, 87, 185, .15);
  padding: 4px 8px;
  color: #6e41b0;
  margin-left: auto;
  display: inline-block;
  font-weight: bold;
}

.my-account-container {
  max-width: 600px;
  margin: 0 auto;
}

.social-signin .secondary-button {
  padding: .75rem 1rem;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.or-separator {
  /* font-style: italic; */
  color: var(--light-gray);
  text-align: center;
}

.expand-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: .5rem;
  border-radius: 5px;
  transition: .1s;
  border: 1px solid #eee;
  background: white;
  color: var(--black);
  padding: .75rem .75rem .75rem 1rem;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: .1s;
  /* font-size: var(--text-small); */
  width: 100%;
  transition: .15s;
}

.expand-dropdown:hover {
  background-color: #f9f9f9;
}

.expand-dropdown-title {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.expand-dropdown-title svg {
  color: var(--lighter-gray);
  position: relative;
  bottom: 1px;
  font-size: 1.1em;
}

.expand-dropdown>svg {
  margin-left: auto;
}

.tippy-box[data-theme~='dropdown'] {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  color: var(--black);
  border-radius: 4px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 14px 0px;
  width: 100%;
  max-width: 330px !important;
}

.big-logo-image {
  width: auto !important;
  height: 48px !important;
}

.tippy-box[data-theme~='dropdown'] .tippy-content {
  padding: 0;
}

.tippy-box[data-theme~='dropdown'] .dropdown-menu {
  display: flex;
  flex-direction: column;
}

.tippy-box[data-theme~='dropdown'] .dropdown-menu button {
  background-color: transparent;
  /* font-family: var(--font-serif); */
  padding: .75rem;
  color: var(--light-gray);
  text-align: left;
  font-weight: normal;
  font-size: var(--text-small);
  width: 100%;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.tippy-box[data-theme~='dropdown'] .dropdown-menu button:hover {
  background-color: #fafafa;
}

.product-home-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.dropdown-menu hr {
  border-color: #ddd;
  border-top: none;
}

.auth-modal {
  max-width: 500px;
}

.inline-icon {
  display: inline-block;
  vertical-align: baseline;
  margin: 0 .2rem;
}

.upgrade-banner .inline-icon svg {
  color: #e0c59c;
  position: relative;
  top: 4px;
  font-size: 1.25em;
}

.upgrade-banner .inline-icon svg:hover {
  color: #c9ab7e;
}

.chevron-container svg {
  color: var(--lighter-gray);
  position: relative;
  top: 1px;

}

.gray-button {
  background-color: #fafafa;
  border: 1px solid transparent;
  color: var(--black);
}

.gray-button:hover {
  border: 1px solid var(--border-color);
}

/* Experimental */

.lens-container {
  border-left: 1px solid var(--border-color);
  background-color: #fafafa;
  padding: 2rem;
}

.lens h1 {
  font-size: 1.25rem;
  letter-spacing: var(--letter-spacing);
  max-width: 55ch;
}

.types-lens th {
  font-size: 1rem;
  letter-spacing: var(--letter-spacing);
}

.lens h3 {
  font-size: 1rem;
}

.polarity-top h4,
.polarity-bottom h4 {
  font-size: 1.1rem;
}

.lens table {
  padding: .75rem;
  background: white;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 14px 0px;
}

.types-lens {
  margin-top: 1.5rem;
}

.phases-lens.new {
  padding: 2rem;
  background: white;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 14px 0px;
}

a.primary-button {
  color: white;
}

.create-about-section,
.create-examples-section {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.about-fw-card {
  color: var(--black);
  text-decoration: none;
  display: flex;
  gap: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  margin-top: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .02);
  max-width: 600px;
  position: relative;
  transition: .15s all;
}

.create-examples-list {
  display: flex;
  flex-basis: 30%;
  margin-top: 1.5rem;
  gap: 1rem;
}

.example-fw-card {
  width: 100%;
  max-width: 320px;
  gap: 1.25rem;
  padding: .5rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .02);
  color: var(--black);
  text-decoration: none;
  position: relative;
  transition: .15s all;
}

.example-fw-card .preview-image-container {
  margin-bottom: 1rem;
}

.example-fw-card:hover,
.about-fw-card:hover {
  background-color: #fafafa;
}

.example-fw-card .about-fw-card:hover {
  background-color: #fafafa;
}

.about-fw-card img {
  max-width: 240px;
}

.about-fw-card-info {
  padding: .25rem 0;
}

.example-fw-card-info {
  padding: 0 .5rem .5rem;
}

.example-fw-card-info h4 {
  font-size: var(--text-small);
}

.about-fw-card-info p {
  font-size: var(--text-small);
  color: var(--light-gray);
  margin-top: .5rem;
}

.preview-image-container {
  background-color: #fafafa;
  padding: .5rem;
  border-radius: 4px;
}

.external-link-svg {
  color: #aaa;
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  font-size: 1.25em;
}

.non-user-lens-promo-info h2 {
  font-size: 1.15rem;
  font-weight: normal;
}

.non-user-lens-promo-info p {
  /* font-size: var(--text-small); */
  color: var(--light-gray);
}

.create-signup-btn {
  max-width: 600px;
  margin-top: .5rem;
}

.explanation-text {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.explanation-text p {
  font-size: var(--text-small);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.explanation-text ol {
  font-size: var(--text-small);
  padding-left: 1.5rem;
  list-style: decimal;
}

.explanation-text ol p {
  margin-bottom: 0;
}

.sidebar-content .explanation-tag {
  display: none;
}

#chatMessages .message.user {
  align-self: flex-end;
  padding: .625rem 1.25rem;
  border-radius: 1.5rem;
  background-color: rgb(244 244 244);
}

#chatMessages .message.assistant {
  align-self: flex-start;
}

.message p {
  margin-bottom: 1em;
}

.message p:last-child {
  margin-bottom: 0;
}

.message ul,
.message ol {
  margin-left: 2em;
  margin-bottom: 1em;
  list-style: initial;
}

.message ul p,
.message ol p {
  margin-bottom: 0.5em;
}

.message ul li,
.message ol li {
  margin-bottom: 0.5em;
}

.message ul ul,
.message ol ul {
  margin-top: 0.25em;
}

.message h2,
.message h3,
.message h4,
.message h5,
.message h6 {
  margin-bottom: 0.5em;
}

.message h1 {
  margin-bottom: 0.65em;
}

.message code {
  background-color: #f0f0f0;
  padding: 0.2em 0.4em;
  border-radius: 3px;
}

.message pre {
  background-color: #f0f0f0;
  padding: 1em;
  border-radius: 5px;
  overflow-x: auto;
}

#ai-explore-sidebar {
  background-color: white;
}