/* -----------------------------------
---------------------------------------
---------------------------------------

REALTYNINJA - LABS CSS
www.realtyninja.com

---------------------------------------
---------------------------------------
----------------------------------- */


/* -----------------------------------
Reset all the things
----------------------------------- */

/* Set the global variables for everything. Change these to use your own fonts and colours. */
:root {
  /* Set sans-serif & mono fonts */
  --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir,
    "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica,
    "Helvetica Neue", sans-serif;
  --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;

  /* Body font size. By default, effectively 18.4px, based on 16px as 'root em' */
  --base-fontsize: 1.15rem;

  /* Major third scale progression - see https://type-scale.com/ */
  --header-scale: 1.25;

  /* Line height is set to the "Golden ratio" for optimal legibility */
  --line-height: 1.618;

  /* Default (light) theme */
  --bg: #fff;
  --accent-bg: #f5f7ff;
  --text: #212121;
  --text-light: #585858;
  --border: #d8dae1;
  --accent: #0d47a1;
  --accent-light: #90caf9;
  --code: #d81b60;
  --preformatted: #444;
  --marked: #ffdd33;
  --disabled: #efefef;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #212121;
    --accent-bg: #2b2b2b;
    --text: #dcdcdc;
    --text-light: #ababab;
    --border: #666;
    --accent: #ffb300;
    --accent-light: #ffecb3;
    --code: #f06292;
    --preformatted: #ccc;
    --disabled: #111;
  }

  img,
  video {
    opacity: 0.6;
  }
}

html {
  /* Set the font globally */
  font-family: var(--sans-font);
}

/* Make the body a nice central block */
body {
  color: var(--text);
  background: var(--bg);
  font-size: var(--base-fontsize);
  line-height: var(--line-height);
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  flex: 1;
  margin: 0 auto;
/*  max-width: 45rem;*/
  padding: 0 0.5rem;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Make the header bg full width, but the content inline with body */
header {
  background: var(--accent-bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 2rem 0.5rem;
  width: 100vw;
  position: relative;
  box-sizing: border-box;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Remove margins for header text */
header h1,
header p {
  margin: 0;
}

/* Fix line height when title wraps */
h1,
h2,
h3 {
  line-height: 1.1;
}

/* Format navigation */
nav {
  font-size: 1rem;
  line-height: 2;
  padding: 1rem 0;
}

nav a {
  margin: 1rem 1rem 0 0;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text) !important;
  display: inline-block;
  padding: 0.1rem 1rem;
  text-decoration: none;
  transition: 0.4s;
}

nav a:hover {
  color: var(--accent) !important;
  border-color: var(--accent);
}

nav a.current:hover {
  text-decoration: none;
}

/* Format headers */
h1 {
  font-size: calc(
    var(--base-fontsize) * var(--header-scale) * var(--header-scale) *
      var(--header-scale) * var(--header-scale)
  );
  margin-top: calc(var(--line-height) * 1.5rem);
}

h2 {
  font-size: calc(
    var(--base-fontsize) * var(--header-scale) * var(--header-scale) *
      var(--header-scale)
  );
  margin-top: calc(var(--line-height) * 1.5rem);
}

h3 {
  font-size: calc(
    var(--base-fontsize) * var(--header-scale) * var(--header-scale)
  );
  margin-top: calc(var(--line-height) * 1.5rem);
}

h4 {
  font-size: calc(var(--base-fontsize) * var(--header-scale));
  margin-top: calc(var(--line-height) * 1.5rem);
}

h5 {
  font-size: var(--base-fontsize);
  margin-top: calc(var(--line-height) * 1.5rem);
}

h6 {
  font-size: calc(var(--base-fontsize) / var(--header-scale));
  margin-top: calc(var(--line-height) * 1.5rem);
}

/* Format links & buttons */
a,
a:visited {
  color: var(--accent);
}

a:hover {
  text-decoration: none;
}

a button,
button,
[role="button"],
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border: none;
  border-radius: 5px;
  background: var(--accent);
  font-size: 1rem;
  color: var(--bg);
  padding: 0.7rem 0.9rem;
  margin: 0 0 0.5rem 0;
}

a button[disabled],
button[disabled],
[role="button"][aria-disabled="true"],
input[type="submit"][disabled],
input[type="reset"][disabled],
input[type="button"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][disabled],
select[disabled] {
  cursor: default;
  opacity: 0.5;
  cursor: not-allowed;
}

input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
  background-color: var(--disabled);
}

button[disabled] {
    background-color:#888 !important;
}

input[type="range"] {
  padding: 0;
}

/* Set the cursor to '?' while hovering over an abbreviation */
abbr {
  cursor: help;
}

button:focus,
button:enabled:hover,
[role="button"]:focus,
[role="button"]:not([aria-disabled="true"]):hover,
input[type="submit"]:focus,
input[type="submit"]:enabled:hover,
input[type="reset"]:focus,
input[type="reset"]:enabled:hover,
input[type="button"]:focus,
input[type="button"]:enabled:hover,
input[type="checkbox"]:focus,
input[type="checkbox"]:enabled:hover,
input[type="radio"]:focus,
input[type="radio"]:enabled:hover {
  cursor: pointer;
}

/* Format the expanding box */
details {
  background: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  margin-bottom: 1rem;
}

summary {
  cursor: pointer;
  font-weight: bold;
  padding: 0.6rem 1rem;
}

details[open] {
  padding: 0.6rem 1rem 0.75rem 1rem;
}

details[open] summary {
  margin-bottom: 0.5rem;
  padding: 0;
}

details[open] > *:last-child {
  margin-bottom: 0;
}

/* Format tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
}

td,
th {
  border: 1px solid var(--border);
  text-align: left;
  padding: 0.5rem;
}

th {
  background: var(--accent-bg);
  font-weight: bold;
}

tr:nth-child(even) {
  /* Set every other cell slightly darker. Improves readability. */
  background: var(--accent-bg);
}

table caption {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Lists */
ol,
ul {
  padding-left: 3rem;
}

/* Format forms */
textarea,
select,
input {
  font-size: inherit;
  font-family: inherit;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  box-shadow: none;
  box-sizing: border-box;
  width: 60%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Add arrow to  */
select {
  background-image: linear-gradient(45deg, transparent 49%, var(--text) 51%),
    linear-gradient(135deg, var(--text) 51%, transparent 49%);
  background-position: calc(100% - 20px), calc(100% - 15px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

select[multiple] {
  background-image: none !important;
}

/* checkbox and radio button style */
input[type="checkbox"],
input[type="radio"] {
  vertical-align: bottom;
  position: relative;
}

input[type="radio"] {
  border-radius: 100%;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background: var(--accent);
}

input[type="checkbox"]:checked::after {
  /* Creates a rectangle with colored right and bottom borders which is rotated to look like a check mark */
  content: " ";
  width: 0.1em;
  height: 0.25em;
  border-radius: 0;
  position: absolute;
  top: 0.05em;
  left: 0.18em;
  background: transparent;
  border-right: solid var(--bg) 0.08em;
  border-bottom: solid var(--bg) 0.08em;
  font-size: 1.8em;
  transform: rotate(45deg);
}
input[type="radio"]:checked::after {
  /* creates a colored circle for the checked radio button  */
  content: " ";
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  position: absolute;
  top: 0.125em;
  background: var(--bg);
  left: 0.125em;
  font-size: 32px;
}

/* Make the textarea wider than other inputs */
textarea {
  width: 80%;
}

/* Makes input fields wider on smaller screens */
@media only screen and (max-width: 720px) {
  textarea,
  select,
  input {
    width: 100%;
  }
}

/* Ensures the checkbox and radio inputs do not have a set width like other input fields */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
}

/* do not show border around file selector button */
input[type="file"] {
  border: 0;
}

/* Without this any HTML using <fieldset> shows ugly borders and has additional padding/margin. (Issue #3) */
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

/* Misc body elements */

hr {
  color: var(--border);
  border-top: 1px;
  margin: 1rem auto;
}

mark {
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--marked);
}

main img,
main video {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

figure {
  margin: 0;
}

figcaption {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1rem;
}

blockquote {
  margin: 2rem 0 2rem 2rem;
  padding: 0.4rem 0.8rem;
  border-left: 0.35rem solid var(--accent);
  opacity: 0.8;
  font-style: italic;
}

cite {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: normal;
}

/* Use mono font for code like elements */
code,
pre,
pre span,
kbd,
samp {
  font-size: 1.075rem;
  font-family: var(--mono-font);
  color: var(--code);
}

kbd {
  color: var(--preformatted);
  border: 1px solid var(--preformatted);
  border-bottom: 3px solid var(--preformatted);
  border-radius: 5px;
  padding: 0.1rem;
}

pre {
  padding: 1rem 1.4rem;
  max-width: 100%;
  overflow: auto;
  overflow-x: auto;
  color: var(--preformatted);
  background: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: 5px;
}

/* Fix embedded code within pre */
pre code {
  color: var(--preformatted);
  background: none;
  margin: 0;
  padding: 0;
}

.clear:after {
    content: "";
    display: table;
    clear: both;
}


/* -----------------------------------
Styles
----------------------------------- */



body {
    font-size: 16px;
    background: #eefffd;
    line-height:1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    color:#383735;
    background-image:url('/static/images/admin/labs-ai-listing-desc-gen-bg.jpg');
    background-attachment: fixed;
    background-size:cover;
}

main {
    display:block;
    max-width:800px;
    min-height:500px;
    margin-top:30px;
    margin-bottom:0;
    box-shadow: 0px 32px 59px 0px rgba(58, 92, 108,0.3), 0px 16px 12px -16px rgba(58, 92, 108,0.22);
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

main h1 {
    margin-block-start: 0;
    margin-block-end: 0.5em;
}

 .realtyninja-labs-logo {
    width:200px;
    margin-bottom:20px;
 }

.intro {
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    padding:50px 50px 30px 50px;
    border-bottom:1px solid #e7e7e7;
    text-align: center;
    background-color:#fff;
}

.intro p {
    width:80%;
    margin: 0 auto;
}

.content-container {
    padding:50px;
    background-color:#fefefe;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

p {
    font-size:16px;
}

h1 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight:400;
    letter-spacing: -0.06rem;
}

h2 {
    font-size:1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight:400;
    letter-spacing: -0.06rem;
}

p.note {
    font-size:.95rem;
    color:#838887;
}

#prompt-main {
    transition: all .3s ease-in-out; 
    display:inline-block;
}

#prompt-main:hover {
    transform: scale(1.1); 
}

.flex-item, #prompt-container {
  text-align: center;
}

.loading:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4,end) 900ms infinite;
    animation: ellipsis steps(4,end) 900ms infinite;
    content: "\2026"; 
    width: 0px;
}

@keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

@-webkit-keyframes ellipsis {
    to {
        width: 1.25em;
    }
}


textarea#prompt-form, textarea#description-form {
    width: 100%;
    padding:10px;
    font-size: 16px;
    border-radius: 8px;
    color: #494949;
    transition: background-color 0.2s ease 0s;
    border:1px solid #c7c7c9;
    overflow: auto;
}

textarea#prompt-form {
    height: 140px;
}

textarea#description-form {
    height:220px;
    border: 4px solid #38d7a6;
}

textarea#prompt-form:focus, textarea#description-form:focus {
    background: none repeat scroll 0 0 #FFFFFF;
    outline-width: 0;
    color:#000;
}

button.loading {
    cursor: wait;
    background-color:#40455c;
}

#copy, #top-generate {
    float: right;
}

button .fa {
    z-index:2;
    position:relative;
}

button#record {
  border: none;
  background: linear-gradient(120deg, #96f829 25%, #38d7a6 75%, #1fe3f4 100%);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  font-size:2rem;
  position: relative;
  cursor: pointer;
  box-shadow: 0px 2px 20px rgba(46, 244, 31, 0.25);
  margin: 15px auto;
  transform: scale(1);
  animation: pulse 2s infinite;
}

button#record:focus {
  outline: none;
}

button#stop {
  border: none;
  background: linear-gradient(120deg, #f829ab 25%, #f42977 75%, #f41f5f 100%);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  font-size:2rem;
  position: relative;
  cursor: pointer;
  margin: 15px auto;
}

button#stop:focus {
  outline: none;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 244, 31, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(46, 244, 31, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 244, 31, 0);
    }
}


.spinning-rec {
  background-color: rgba(255, 255, 255, 0);
  height: 100px;
  width: 100px;
  position: absolute;
  left:0;
  top:0;
  border-radius: 62px;
  -webkit-clip-path: polygon(50% 50%, 50% 0%, 0% 0%);
          clip-path: polygon(50% 50%, 50% 0%, 0% 0%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  -webkit-animation: rotation 3s infinite linear;
          animation: rotation 3s infinite linear;
}
.spinning-rec-cutout {
  background-color: rgba(0, 0, 0, .1);

  height: 100px;
  width: 100px;
  -webkit-clip-path: circle(50px at center);
          clip-path: circle(50px at center);
  position: absolute;
  top: 0;
  left: 0;
}


@-webkit-keyframes rotation {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes rotation {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

button#loading {
    cursor: wait;
}

button#loading {
  border: none;
  background: #c7bcc0;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  font-size:2rem;
  position: relative;
  margin: 15px auto;
  animation-name: spin;
  animation-duration: 800ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

button#record:focus, button#stop:focus, button#loading:focus, button.generate:focus {
  outline: none;
}

button.generate, button#copy, button#reset {
    border: none;
    background: #38d7a6;
}

.copied-text {
    font-size:12px;
    margin-block-start: 0;
    margin-block-end: 0;
    float:right;
    clear:both;
    margin:0;
}

#description-container {
    padding: 1rem;
    margin-top:50px;
    position: relative;
    padding: 6px;
    border-radius:8px;
    background: #eef1f1;
    padding:25px;
}

#description-container h2 {
    text-align: center;
}

button.modifier-button {
    font-size:13px;
    padding: 0.4rem 0.5rem;
    background-color:#96b9ae;
}

footer {
    max-width:800px;
    text-align: center;
}

.footer-link {
    font-size:12px;
}

.footer-link a {
    color:#fff;
    text-decoration: none;
}

dialog::backdrop {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
dialog {
    width: 80%;
    box-shadow: 0px 32px 59px 0px rgba(0, 0, 0, 0.4);
}

dialog button {
  background-color:#000;
}


@media (min-width: 768px) {
  h1 {
      font-size: 3rem;
  }

  h2 {
      font-size:2.6rem;
  }

  .flex-container {
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
      align-content: stretch;
      column-gap:40px;
  }

  .flex-item:nth-child(1) {
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0;
      -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      -webkit-align-self: auto;
      -ms-flex-item-align: auto;
      align-self: auto;
  }

  .flex-item:nth-child(2) {
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0;
      -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      -webkit-align-self: auto;
      -ms-flex-item-align: auto;
      align-self: auto;
  }

  .flex-item, #prompt-container {
    text-align: left;
  }

  dialog {
      width: 600px;
  }

}

