@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400..600&display=swap");

@keyframes showBottomAnim {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showBottom20Anim {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showTopAnim {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showRightAnim {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showAsideTooltip {
  from {
    transform: translateX(10px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes newProductAnim {
  0% {
    background: var(--white);
  }
  50% {
    background: #f3fff8;
    color: var(--success);
  }
  100% {
    background: var(--white);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
input,
textarea,
select {
  appearance: none;
  width: 100%;
  padding: 18px 12px;
  outline: none;
  border-radius: 4px;
  font-size: var(--text);
  margin-bottom: 15px;
  color: var(--black);
  box-shadow: none;
  font-size: 17px;
  background-color: var(--white);
  border: solid 1px var(--white);
  border-radius: 10px;
}
input:focus,
textarea:focus,
select:focus {
  border: solid 1px var(--black);
}
input:disabled,
textarea:disabled,
select:disabled {
  color: var(--grey);
}
button {
  width: auto;
  padding: 20px 28px !important;
  border-radius: 100px;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  appearance: none;
  font-weight: 600;
}
button:disabled {
  color: #555 !important;
  background: var(--backgroundAside) !important;
  border: none !important;
  pointer-events: none;
  cursor: default !important;
}
button:disabled:hover {
  color: var(--grey) !important;
  background: var(--backgroundAside) !important;
  border: none !important;
}
button.--delete {
  background: var(--white);
  color: var(--error);
  border: solid 1px var(--error);
}
button.--primaryBorder {
  background: var(--white);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}
button.--primary {
  background: var(--primary) !important;
  color: var(--white);
}
button.--cancel {
  background: var(--border);
  color: var(--black);
}
button {
  filter: brightness(1);
}
textarea {
  resize: vertical;
  min-height: 150px;
}
button:hover {
  filter: brightness(1.02);
}
button:active {
  filter: brightness(0.98);
}
select {
  appearance: none;
  background-image: url("../base/assets/img/down-arrow.svg") !important;
  background-position: calc(100% - 22px) 50% !important;
  background-repeat: no-repeat !important;
}
input[type=checkbox] {
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  cursor: pointer !important;
  margin: 0;
  border: solid 1px var(--white);
  flex: none;
}
input[type=checkbox]:hover {
  border: solid 1px var(--black);
}
input[type=checkbox]:checked {
  border: solid 1px var(--black);
  background: var(--black);
}
/* ========== DARK MODE — CALOO ========== */
:root {
  --white: #1a1a2e;
  /* surface / cards */
  --primary: #4ce39d;
  /* Caloo green accent */
  --primaryDim: #3bba7f;
  /* hover / pressed green */
  --secondary: #ff6c6c;
  --redOak: #D4A489;
  --primaryLight: #81EFC0;
  --textPrimary: #b9aaf5;
  --primaryDark: #6331e2;
  --primaryHover: #4b6b7a;
  --border: #2a2a42;
  /* subtle borders */
  --black: #f0f0f5;
  /* primary text (inverted) */
  --grey: #8888a0;
  --darkGrey: #8888a0;
  --backgroundMain: #12121f;
  /* page background */
  --backgroundAside: #1e1e34;
  --error: #d62727;
  --errorLight: #3a1a1a;
  --success: #32cc77;
  --info: #ffae00;
  --infoBox: #1a2e24;
  --blue: #4285F4;
  --textColor: #d4d4dc;
  /* body text color */
  --subtleText: #8888a0;
  /* secondary text */
  --radius: 18px;
  --cardShadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  /* font sizes (unchanged) */
  --h1: 78px;
  --h2: 32px;
  --h3: 19px;
  --h4: 23px;
  --text: 17px;
  --label: 14px;
  --button: 12px;
  --asideText: 14px;
  --textSemiBig: 18px;
  --textBig: 22px;
  --textSmall: 8px;
  --gradient: linear-gradient(90deg, #4ce3ca, #4CE39D, #ffce7a, #ffa87a);
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  /* Evita el destello azul en iOS */
  outline: none;
}
strong {
  font-weight: 600 !important;
}
p {
  user-select: none;
  -webkit-user-select: none;
}
::selection {
  background: var(--primary);
  color: #12121f;
}
::placeholder {
  color: var(--subtleText);
}
::-webkit-slider-runnable-track {
  width: 100%;
  background: var(--backgroundAside);
  border-radius: 30px;
  height: 4px;
  left: 0;
  top: 16px;
}
::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary);
  cursor: ew-resize;
  border-radius: 50%;
  z-index: 10;
  top: -8px;
  position: relative;
}
::-moz-range-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary);
  cursor: ew-resize;
  border-radius: 50%;
  z-index: 10;
  top: -8px;
  position: relative;
}
body,
html {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: var(--text);
  color: var(--textColor);
  background: var(--backgroundMain);
  cursor: default !important;
  letter-spacing: 0.2px;
}
p {
  margin: 0;
}
a {
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
}
h1 {
  font-size: var(--h1);
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: -5px;
}
h2 {
  font-size: var(--h2);
  margin: 0 0 35px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -1px;
}
h3 {
  font-size: var(--h3);
  margin: 0 0 12px;
  font-weight: 600;
}
h4 {
  font-size: var(--h4);
  margin: 0;
}
ul {
  list-style-type: none;
  padding: 0;
}
input[type=range] {
  appearance: none !important;
  background: none;
  border: none;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 0;
}
button.--primary {
  background: var(--primary);
  color: var(--white) !important;
}
button.--black {
  background: var(--black);
  color: var(--white) !important;
}
button.--black:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}
button.--disabled {
  pointer-events: none;
  background: var(--backgroundAside) !important;
  color: #555 !important;
  border-color: var(--backgroundAside) !important;
}
label {
  font-size: var(--label);
  margin-bottom: 5px;
  display: block;
  color: var(--darkGrey);
}
.content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.main {
  height: 100%;
  left: 240px;
  overflow: auto;
  padding: 20px;
  position: fixed;
  width: calc(100% - 240px);
  top: 64px;
  height: calc(100% - 64px);
}
.main.--full {
  width: 100% !important;
  left: 0 !important;
  top: 0 !important;
}
.main__content {
  border-radius: 10px;
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
}
.main h1 {
  font-size: 32px !important;
  margin: 0 auto 20px;
  width: 100%;
  max-width: 600px;
}
.main .box {
  background: var(--white);
  padding: 20px;
  border: solid 1px var(--border);
  border-radius: 5px;
}
.main .box input[type=text],
.main .box textarea,
.main .box label {
  display: block;
  width: 100%;
}
.main input,
.main textarea,
.main select {
  background: var(--backgroundAside);
}
.save {
  width: 100%;
  bottom: 0;
  padding: 15px;
  position: fixed;
  width: calc(100% - 100px);
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: flex-end;
  right: 0;
}
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 5px 15px 5px 0;
  width: fit-content;
  cursor: pointer;
}
.checkbox label {
  margin: 0 0 1px;
}
.checkbox p {
  cursor: pointer;
}
input[type=color] {
  width: 47px;
  height: 47px;
  border: none;
  cursor: pointer;
  padding: 1px;
}
.--colorP {
  color: #344dda;
}
.--colorY {
  color: #ffb700;
}
.--colorG {
  color: var(--success);
}
.--colorR {
  color: var(--error);
}
input[type=range] {
  -webkit-appearance: none;
  /* Elimina el estilo predeterminado */
  width: 300px;
  height: 8px;
  /* Color de la pista */
  border-radius: 5px;
  outline: none;
}
@media only screen and (max-width: 700px) {
  input[type=range] {
    width: 100%;
  }
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Elimina el estilo predeterminado */
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--black);
  /* Color del control */
  border-radius: 50%;
}
@media only screen and (max-width: 700px) {
  input[type=range]::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
    position: relative;
    top: -13px;
  }
}
input[type=range]::-moz-range-thumb {
  /* Elimina el estilo predeterminado */
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--black);
  /* Color del control */
  border-radius: 50%;
}
.--box {
  max-width: 1250px;
  background: var(--backgroundAside);
  display: flex;
  margin: 0 auto 80px;
  border-radius: 40px 20px 20px 20px;
}
@media only screen and (max-width: 700px) {
  .--box {
    min-height: initial !important;
    height: initial !important;
    margin: 20px 10px;
    border-radius: 40px 20px 20px 20px;
    max-height: initial !important;
  }
}
.--box:last-child {
  margin-bottom: 100px;
}
.--box img {
  width: 100%;
  object-fit: contain;
}
.--box .--img {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.--box .--container {
  margin: 40px auto;
  max-width: 1200px;
  display: flex;
  padding: 60px;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 700px) {
  .--box .--container {
    flex-direction: column;
    width: 100%;
    padding: 20px;
    gap: 30px;
    margin: 20px 0;
  }
  .--box .--container.--reverse {
    flex-direction: column-reverse;
  }
}
.--box .--container > div {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100%;
}
.--box button {
  margin-top: 25px;
  width: fit-content;
}
.--box .--info {
  flex-direction: column;
  justify-content: center;
}
.--box .--info p {
  font-size: 20px;
}
@media only screen and (max-width: 700px) {
  .--box .--info p {
    font-size: 16px;
  }
}
.--box video {
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 700px) {
  .--box video {
    width: 60%;
    height: initial !important;
  }
}
.--box h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -3.5px;
  text-align: left;
  width: 100%;
}
@media only screen and (max-width: 700px) {
  .--box h2 {
    font-size: 40px;
    line-height: 45px;
    text-align: left;
    margin-bottom: 20px;
  }
}
.errors {
  margin: 0 0 20px;
  background: var(--errorLight);
  color: var(--error);
  line-height: 20px;
  padding: 15px;
  font-size: 15px;
  border-radius: 10px;
  list-style: disc;
  width: 100%;
}
.signin {
  padding: 20px 40px;
  max-width: 450px;
  margin: 0 auto;
}
.signin__logo {
  width: 100%;
  display: flex;
  min-height: 100%;
  background: var(--backgroundMain);
  color: var(--textColor);
  justify-content: center;
  margin-bottom: 0;
  padding: 60px 0 40px;
}
.signin__logo img {
  height: 70px;
}
.signin__or {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.signin {
  color: var(--subtleText);
}
.signin__txt {
  margin-bottom: 20px;
  text-align: center;
}
.signin__account {
  color: var(--subtleText);
  font-size: 15px;
  text-align: center;
  width: 100%;
  left: 0;
  color: var(--darkGrey);
  margin-top: 25px;
  padding-bottom: 50px;
  color: var(--subtleText);
}
.signin__account a {
  color: var(--primary);
}
.signin input {
  width: 100%;
}
.signin button {
  width: 100%;
}
.login {
  padding: 20px 40px;
  height: 100%;
  max-width: 450px;
  margin: 0 auto;
  background: var(--backgroundMain);
  color: var(--textColor);
}
.login__logo {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 0 40px;
}
.login__logo img {
  height: 70px;
}
.login__txt {
  margin-bottom: 20px;
  text-align: center;
  color: var(--subtleText);
}
.login__or {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  color: var(--subtleText);
}
.login__account {
  font-size: 15px;
  text-align: center;
  width: 100%;
  left: 0;
  color: var(--subtleText);
  margin-top: 25px;
  padding-bottom: 30px;
}
.login__account a {
  color: var(--primary);
}
.login input {
  width: 100%;
}
.login button {
  width: 100%;
}
.itemType__page h2 {
  line-height: initial;
  margin: 0 0 10px;
}
.ql-align-center {
  text-align: center !important;
  margin: 0;
}
.ql-align-centerh2 {
  line-height: initial;
}
.itemType__page img {
  width: 100% !important;
}
.modalPremium__content {
  padding-bottom: 100px !important;
}
.modalPremium__content h2 {
  line-height: initial;
}
.modalPremium__content img {
  width: 100% !important;
}
.modalPremium__content a {
  color: var(--primary);
  text-decoration: underline;
}
.page-transition .progress {
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}
.recommendedRecipesList .mealCard {
  background: var(--white) !important;
}
.recommendedRecipesList .mealCard__icons i {
  background: var(--backgroundAside) !important;
  margin-right: 0 !important;
}
.dropdown .noData {
  flex-direction: column;
  padding: 20px;
  align-items: center;
  justify-content: center;
  gap: 12px !important;
}
.dropdown .noData h3,
.dropdown .noData p {
  text-align: center;
}
.camera-overlay .file {
  z-index: 2000;
  position: absolute;
  top: 40px;
  left: 15px;
}
.camera-overlay .file button {
  flex-direction: row !important;
  border-radius: 100px;
  width: initial !important;
  height: initial !important;
}
.modalHelp .modal__content {
  max-width: calc(100% - 40px) !important;
}
.modalHelp .modal__content h3 {
  margin-bottom: 8px;
  font-size: 24px !important;
}
.creativeGenModal .modal__content {
  width: min(820px, 92vw);
}
.creativeGenModal .modal__header {
  align-items: center;
}
.creativeGenModal .modal__header h2 {
  margin: 0;
  line-height: 1.1;
}
.creativeGenModal--select .modal__content {
  width: min(680px, 92vw);
}
.creativeGenModal--edit .modal__content {
  width: min(980px, 96vw);
}.file.svelte-126sqfw {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
  padding: 20px 0;
}
.file.svelte-126sqfw input[type=file]:where(.svelte-126sqfw) {
  display: none;
}
.file__preview.svelte-126sqfw {
  display: block;
  width: 120px;
  height: 120px;
  background-position: center !important;
  background-size: cover !important;
  border-radius: 50%;
}
/* (unused) .file label {
  display: flex !important;
  gap: 12px;
  align-items: center;
  background: var(--backgroundAside);
  color: var(--darkGray);
  border-radius: 100px;
  padding: 5px;
  cursor: pointer;
  width: fit-content !important;
}*/
/* (unused) .file label.--attached {
  background: var(--success);
  color: var(--white);
  pointer-events: none;
}*/
/* (unused) .file label.--attached i {
  color: var(--success);
}*/
/* (unused) .file label:hover {
  background: var(--backgroundAside);
  color: var(--black);
}*/
/* (unused) .file label:active {
  background: var(--primary);
  color: var(--white);
}*/
/* (unused) .file label i {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  color: var(--darkGray);
  border-radius: 50%;
  font-size: 18px;
}*/
/* (unused) .file label p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 22px;
}*/
.file__image.svelte-126sqfw {
  background: var(--backgroundAside);
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--darkGrey);
  flex-direction: column;
  gap: 8px;
}
.file__image.svelte-126sqfw p:where(.svelte-126sqfw) {
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
}
.file__delete.svelte-126sqfw {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--error);
  margin-left: 20px;
  position: relative;
  top: -2px;
}
.file__delete.svelte-126sqfw:hover {
  color: var(--error);
}
.file__delete.svelte-126sqfw:active {
  color: var(--error);
}.list.svelte-13yv1oe {
  width: 100%;
  border-radius: 5px;
}
.list.svelte-13yv1oe label:where(.svelte-13yv1oe) {
  text-align: left;
  width: 100%;
  font-weight: 600;
}
.list__header.svelte-13yv1oe {
  margin: 0;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  border-radius: 5px 5px 0 0;
}
.list__header.svelte-13yv1oe li:where(.svelte-13yv1oe) {
  font-weight: 600;
  width: 100%;
  color: var(--darkGrey);
}
.list__header.svelte-13yv1oe li:where(.svelte-13yv1oe):last-child {
  width: 60px;
}
.list__content.svelte-13yv1oe {
  display: flex;
  flex-direction: column;
  border-top: none;
  border-radius: 0 0 5px 5px;
  padding: 10px 0 20px;
  margin: 0;
}
.list__content.svelte-13yv1oe .row:where(.svelte-13yv1oe) {
  font-weight: 600;
  width: 100%;
  display: flex;
  align-items: center;
  border-top: none;
  cursor: pointer;
  position: relative;
  margin-bottom: 5px;
  padding: 10px 60px 10px 10px;
  border-bottom: solid 2px #eaeff7;
}
.list__content.svelte-13yv1oe .row:where(.svelte-13yv1oe) input:where(.svelte-13yv1oe) {
  width: 100%;
  margin-bottom: 0;
}
.list__content.svelte-13yv1oe .row:where(.svelte-13yv1oe) button:where(.svelte-13yv1oe) {
  position: absolute;
  right: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  background: none;
  color: var(--error);
}
.list__content.svelte-13yv1oe .row:where(.svelte-13yv1oe) button:where(.svelte-13yv1oe):hover {
  background: var(--error);
  color: var(--white);
}
.list__content.svelte-13yv1oe .row:where(.svelte-13yv1oe):last-of-type {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
.list__btn.svelte-13yv1oe {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px 0 20px;
}
.list__btn.svelte-13yv1oe button:where(.svelte-13yv1oe) {
  width: 100%;
  background: var(--white);
  color: var(--primary);
  border: solid 1px var(--primary);
  padding: 12px 0 !important;
}.modal.svelte-1r4g6or {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal.--cancellable.svelte-1r4g6or .modal__close:where(.svelte-1r4g6or) {
  display: none;
}
.modal.--center.svelte-1r4g6or {
  backdrop-filter: blur(10px);
}
.modal.--center.svelte-1r4g6or h2:where(.svelte-1r4g6or) {
  margin: 0;
  line-height: initial !important;
}
.modal.--center.svelte-1r4g6or .modal__content:where(.svelte-1r4g6or) {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 40px);
  max-width: 650px;
  border-radius: 0;
  animation: showBottom20Anim 0.3s ease forwards;
  border-radius: 20px;
}
.modal.--center.svelte-1r4g6or .modal__close:where(.svelte-1r4g6or) {
  position: absolute;
  right: 25px;
  top: 25px;
}
.modal.--center.svelte-1r4g6or .modal__close:where(.svelte-1r4g6or) button:where(.svelte-1r4g6or) {
  border: none;
}
.modal.--center.svelte-1r4g6or .modal__close:where(.svelte-1r4g6or) button:where(.svelte-1r4g6or) i:where(.svelte-1r4g6or) {
  color: var(--black);
  font-size: 22px;
}
.modal__close.svelte-1r4g6or button:where(.svelte-1r4g6or) {
  width: 32px;
  padding: 0 !important;
  height: 32px;
  border-radius: 50%;
  background: var(--backgroundAside);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__close.svelte-1r4g6or button:where(.svelte-1r4g6or):hover i:where(.svelte-1r4g6or) {
  color: var(--error);
}
.modal__close.svelte-1r4g6or button:where(.svelte-1r4g6or) i:where(.svelte-1r4g6or) {
  font-size: 17px;
}
.modal__content.svelte-1r4g6or {
  position: fixed;
  padding: 20px 20px 95px;
  background: var(--backgroundMain);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  right: 0;
  z-index: 1;
  overflow: auto;
  animation: showRightAnim 0.3s ease;
}
/* (unused) .modal__content input,
.modal__content textarea,
.modal__content select {
  background: var(--backgroundAside);
}*/
.modal__buttons.svelte-1r4g6or {
  width: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  bottom: 0;
  background: var(--white);
  right: 0;
  padding: 20px 10px;
}
.modal__buttons.svelte-1r4g6or button:where(.svelte-1r4g6or) {
  padding: 22px;
}
.modal__header.svelte-1r4g6or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.modal__header.svelte-1r4g6or h2:where(.svelte-1r4g6or) {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--black);
}
.modal__overlay.svelte-1r4g6or {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  animation: appear 0.3s ease;
}.multipleselect.svelte-1q9hva2 ul:where(.svelte-1q9hva2) {
  align-items: center;
  cursor: pointer;
  gap: 10px;
  border-radius: 10px;
}
.multipleselect.svelte-1q9hva2 ul:where(.svelte-1q9hva2) li:where(.svelte-1q9hva2) {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  padding: 20px;
  gap: 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  border: solid 1px var(--white);
}
.multipleselect.svelte-1q9hva2 ul:where(.svelte-1q9hva2) li.--selected:where(.svelte-1q9hva2) {
  background: var(--infoBox);
  border: solid 1px var(--primary);
}.nav.svelte-per2aw {
  position: sticky;
  top: 65px;
  width: 100%;
  margin: 20px 0;
  z-index: 100;
}
.nav.--iOS.svelte-per2aw {
  top: 95px;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) {
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  gap: 0;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) li:where(.svelte-per2aw) {
  list-style: none;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  border-bottom: solid 2px transparent;
  font-weight: 600;
  color: var(--darkGrey);
  width: 100%;
  justify-content: center;
  display: flex;
  background: var(--white);
  font-size: 15px;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) li:where(.svelte-per2aw):first-child {
  border-radius: 100px 0 0 100px;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) li:where(.svelte-per2aw):last-child {
  border-radius: 0 100px 100px 0;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) li:where(.svelte-per2aw) i:where(.svelte-per2aw) {
  font-size: 18px;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) li.--active:where(.svelte-per2aw) {
  color: var(--black);
  background: var(--primary);
}.noData.svelte-1xq81xr {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 30px;
}
.noData.svelte-1xq81xr i:where(.svelte-1xq81xr) {
  font-size: 35px;
  color: var(--black);
}
.noData.svelte-1xq81xr h3:where(.svelte-1xq81xr) {
  font-size: 16px;
  margin-bottom: 3px;
}
.noData.svelte-1xq81xr p:where(.svelte-1xq81xr) {
  font-size: 14px;
  color: var(--darkGrey);
}
.noData.svelte-1xq81xr button:where(.svelte-1xq81xr) {
  margin-top: 30px;
}.radiobutton.svelte-joo73f {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  padding: 20px;
  gap: 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  border: solid 1px var(--white);
}
.radiobutton.svelte-joo73f:last-child {
  margin-bottom: 0;
}
.radiobutton.svelte-joo73f:active {
  background: var(--infoBox);
  border: solid 1px var(--primary);
}
.radiobutton.--selected.svelte-joo73f {
  background: var(--infoBox);
  border: solid 1px var(--primary);
}.selector.svelte-1b1wsr {
  background: var(--white);
  width: 100%;
}.spinner.svelte-jxbss5 {
  width: 100%;
  height: 100%;
  position: fixed;
  background: var(--backgroundMain);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  top: 0;
  left: 0;
}
.spinner.--tiny.svelte-jxbss5 {
  width: 50px !important;
  height: 50px !important;
  left: 0 !important;
  top: 0 !important;
  position: relative !important;
  background: transparent;
  justify-content: center;
  align-items: center;
}
.spinner.svelte-jxbss5 span:where(.svelte-jxbss5) {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--black);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 1s linear infinite;
}
.spinner.svelte-jxbss5 p:where(.svelte-jxbss5) {
  font-size: 13px;
  margin-top: 10px;
  color: var(--grey);
  white-space: nowrap;
}.toast.svelte-gt7j90 {
  position: fixed;
  top: 20px;
  width: calc(100% - 40px);
  left: 20px;
  background-color: #333;
  color: white;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  opacity: 0;
  animation: showTopAnim 0.3s forwards;
}
.toast.--iOS.svelte-gt7j90 {
  top: 80px;
}
.toast.--success.svelte-gt7j90 {
  background: var(--success);
}
.toast.--fail.svelte-gt7j90 {
  background: var(--error);
}
.toast.--error.svelte-gt7j90 {
  background-color: #E74C3C;
  color: #fff;
}
.toast.--info.svelte-gt7j90 {
  background-color: #3498DB;
  color: #fff;
}
.toast.--warning.svelte-gt7j90 {
  background-color: #F39C12;
  color: #fff;
}.chart.svelte-21k9e6 {
  padding: 0;
  margin: 0;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}.dialog__overlay.svelte-2cgpo3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.dialog__spinner.svelte-2cgpo3 {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  z-index: 10;
}
.dialog__modal.svelte-2cgpo3 {
  background: var(--white, #fff);
  padding: 30px 20px;
  border-radius: 12px;
  width: calc(100% - 40px);
  max-width: 350px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
/* (unused) .dialog h2 {
  font-size: 18px;
}*/
.dialog__message.svelte-2cgpo3 {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 30px;
}
.dialog__actions.svelte-2cgpo3 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.dialog__btn.svelte-2cgpo3 {
  flex: 1;
  padding: 10px 0;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.dialog__btn.--ok.svelte-2cgpo3 {
  background: var(--primary, #007aff);
  color: #fff;
}
.dialog__btn.--cancel.svelte-2cgpo3 {
  background: var(--backgroundAside);
  color: #444;
}
.dialog__btn.--delete.svelte-2cgpo3 {
  background: var(--error) !important;
  color: var(--white) !important;
}
.dialog__btn.--third.svelte-2cgpo3 {
  background: var(--backgroundMain, #f9f9f9);
  color: var(--primary, #007aff);
  margin-top: 10px;
  width: 100%;
}
.dialog__btn.svelte-2cgpo3:active {
  opacity: 0.7;
}.googleOauth.svelte-cbz9j9 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--black) !important;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}
.googleOauth.svelte-cbz9j9 i:where(.svelte-cbz9j9) {
  font-size: 20px;
  color: var(--black);
}

.error.svelte-cbz9j9 {
  color: var(--secondary, #e74c3c);
  font-size: 14px;
  margin: 15px 0;
}
.emailAndPwd.svelte-1aot8x4 input:where(.svelte-1aot8x4) {
  background: var(--backgroundAside);
}

.termsContainer.svelte-1aot8x4 {
  width: 100%;
  margin: 15px 0;
}

.terms.svelte-1aot8x4 {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.4;
  gap: 10px;
  cursor: pointer;
}

.terms.svelte-1aot8x4 input[type=checkbox]:where(.svelte-1aot8x4) {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary, #2ecc71);
  border-radius: 4px;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}

.terms.svelte-1aot8x4 input[type=checkbox]:where(.svelte-1aot8x4):checked {
  background: var(--primary, #2ecc71);
  border-color: var(--primary, #2ecc71);
}

.terms.svelte-1aot8x4 input[type=checkbox]:where(.svelte-1aot8x4):checked::after {
  content: "✔";
  color: white;
  font-size: 12px;
}

.terms.svelte-1aot8x4 a:where(.svelte-1aot8x4) {
  color: var(--primary, #2ecc71);
  text-decoration: underline;
  font-weight: 500;
}

.error.svelte-1aot8x4 {
  color: var(--secondary, #e74c3c);
  font-size: 14px;
  margin: 15px 0;
}.header.svelte-wdtlhe {
  width: 100%;
  padding: 20px 10px;
  background: var(--backgorundMain);
  position: fixed;
  top: 0;
  transition: all 0.3s;
  z-index: 1000;
}
.header.--scrolling.svelte-wdtlhe {
  backdrop-filter: blur(30px);
  transition: all 0.6s;
}
.header.--scrolling.svelte-wdtlhe p:where(.svelte-wdtlhe) {
  opacity: 1;
  transition: all 0.6s;
}
.header.--scrolling.svelte-wdtlhe .header__h2:where(.svelte-wdtlhe) {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
/* (unused) .header.--iOS {
  padding-top: 50px;
}*/
/* (unused) .header.--iOS .header__returnButton {
  top: 53px;
}*/
.header__returnButton.svelte-wdtlhe {
  position: absolute;
  left: 19px;
  background: none;
  color: var(--black);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 22px;
  padding: 0 !important;
  z-index: 100;
}
.header.svelte-wdtlhe button:where(.svelte-wdtlhe) {
  z-index: 100;
}
.header.svelte-wdtlhe p:where(.svelte-wdtlhe) {
  opacity: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  transition: all 0.3s;
}
.header__h2.svelte-wdtlhe {
  opacity: 1;
  position: absolute;
  left: 19px;
  display: flex;
  top: 40px;
  width: 100%;
  transition: all 0.3s;
  transition-delay: 0.1s;
  line-height: normal;
  max-width: 100%;
  padding: 0 40px;
}.section.svelte-1jg8z5n {
  width: 100%;
  padding: 10px;
  margin: 82px auto;
  background: var(--white);
  max-width: 600px;
  border-radius: 20px;
}
.section.--iOS.svelte-1jg8z5n {
  margin-top: 120px;
}
.section.svelte-1jg8z5n .--fixedBtn:where(.svelte-1jg8z5n) {
  width: calc(100% - 20px);
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  background: var(--black);
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .section.svelte-1jg8z5n .--fixedBtn:where(.svelte-1jg8z5n) {
    bottom: 50px;
  }
}
.section__content.svelte-1jg8z5n {
  width: 100%;
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  border-bottom: solid 2px var(--backgroundAside);
  max-width: 600px !important;
}
/* (unused) .section__content input {
  background: var(--backgroundAside);
}*/.menu__section.svelte-560yom {
  background: var(--white);
  border-radius: 12px;
  padding: 0 10px;
  border-bottom: solid 2px var(--backgroundAside);
  margin: 10px 0 0;
}
.menu.svelte-560yom .--last:where(.svelte-560yom) {
  border-bottom: 0 !important;
}
.menu__item.svelte-560yom a:where(.svelte-560yom) {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 15px;
  font-weight: 600;
  color: #1d1147;
  border-bottom: solid 1px var(--border);
}
.menu__item.svelte-560yom a:where(.svelte-560yom):active {
  color: var(--primary);
}
.menu__item.svelte-560yom a:where(.svelte-560yom) p:where(.svelte-560yom) {
  font-weight: 500;
  font-size: 14px;
}
.menu__icon.svelte-560yom {
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}.langSelector.svelte-10ehhfy {
  width: 100%;
  position: relative;
  margin-bottom: 12px;
}
.langSelector.svelte-10ehhfy label:where(.svelte-10ehhfy) {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--subtleText);
}
.langSelector__select.svelte-10ehhfy {
  padding: 15px 10px;
  border-radius: 5px;
  background: var(--white);
  border: solid 1px var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2;
  color: var(--textColor);
}
.langSelector__select.svelte-10ehhfy div:where(.svelte-10ehhfy) {
  display: flex;
  align-items: center;
  gap: 10px;
}
.langSelector__select.svelte-10ehhfy p:where(.svelte-10ehhfy) {
  margin: 0;
  color: var(--textColor);
}
.langSelector__select.svelte-10ehhfy span:where(.svelte-10ehhfy) {
  width: 30px;
  height: 30px;
  display: block;
  background-size: 130%;
  border-radius: 50%;
  background-position: center;
}
.langSelector__select.svelte-10ehhfy i:where(.svelte-10ehhfy) {
  color: var(--subtleText);
}
.langSelector__langs.svelte-10ehhfy {
  background: var(--white);
  position: fixed;
  width: calc(100% - 20px);
  transform: translate(0, 50%);
  top: 10px;
  z-index: 2;
  border-radius: 20px;
  left: 10px;
  padding: 20px;
  border: solid 1px var(--border);
  box-shadow: var(--cardShadow);
}
.langSelector__langs.svelte-10ehhfy li:where(.svelte-10ehhfy) {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  color: var(--textColor);
}
.langSelector__langs.svelte-10ehhfy li:where(.svelte-10ehhfy):hover {
  background: var(--backgroundAside);
}
.langSelector__langs.svelte-10ehhfy img:where(.svelte-10ehhfy) {
  width: 24px;
  height: 24px;
}
.langSelector__foreground.svelte-10ehhfy {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
    /* ── Uniform: simple pixel-shift with steps(N) ─────────────────────── */
    @keyframes sprite-play {
        from {
            background-position-x: 0;
        }
        to {
            background-position-x: var(--shift);
        }
    }

    /* ── Action: non-uniform frame timing (Pixar principles) ───────────── */
    /*
     * Frame hold durations (% of cycle):
     *   F1 rest 12%  ·  F2 anticipation 8%  ·  F3 burst 8%
     *   F4 PEAK 22%  ·  F5 follow-through 14%  ·  F6 settle 12%
     *   F7 ease-out 14%  ·  F8 rest 10%
     *
     * steps(1, end) = hold current frame value, snap at boundary.
     * var(--fw) = one frame width in px, set per-instance.
     */
    @keyframes sprite-frames-action {
        0% {
            background-position-x: 0;
        }
        12% {
            background-position-x: calc(-1 * var(--fw));
        }
        20% {
            background-position-x: calc(-2 * var(--fw));
        }
        28% {
            background-position-x: calc(-3 * var(--fw));
        }
        50% {
            background-position-x: calc(-4 * var(--fw));
        }
        64% {
            background-position-x: calc(-5 * var(--fw));
        }
        76% {
            background-position-x: calc(-6 * var(--fw));
        }
        90%,
        100% {
            background-position-x: calc(-7 * var(--fw));
        }
    }

    /* ── Action: squash / stretch / bob (smoothly interpolated) ────────── */
    /*
     * Per-segment animation-timing-function gives organic Pixar feel:
     *   Anticipation → ease-out      (gentle wind-up)
     *   Burst → snap bezier           (quick acceleration)
     *   Peak → ease-in-out            (smooth suspension)
     *   Settle → ease-out             (gentle deceleration)
     *
     * Transform values are intentionally subtle — Pixar restraint.
     * transform-origin at 50% 85% anchors squash/stretch near the feet.
     */
    @keyframes sprite-bounce-action {
        0% {
            transform: scaleX(1) scaleY(1) translateY(0);
            animation-timing-function: ease-out;
        }
        12% {
            /* Anticipation: squash into ground, coil energy */
            transform: scaleX(1.01) scaleY(0.98) translateY(1.5%);
            animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
        }
        20% {
            /* Burst: stretch up, snap into action */
            transform: scaleX(0.99) scaleY(1.04) translateY(-2.5%);
            animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
        }
        28% {
            /* Peak: slight stretch, lifted — held the longest */
            transform: scaleX(1) scaleY(1.02) translateY(-3.5%);
            animation-timing-function: ease-in-out;
        }
        50% {
            /* Follow-through: mass settling back down */
            transform: scaleX(1.005) scaleY(0.99) translateY(-1%);
            animation-timing-function: ease-in-out;
        }
        64% {
            /* Overshoot: tiny bounce past rest position */
            transform: scaleX(0.995) scaleY(1.015) translateY(0.8%);
            animation-timing-function: ease-out;
        }
        76% {
            /* Ease back to neutral */
            transform: scaleX(1) scaleY(1) translateY(0);
            animation-timing-function: ease-out;
        }
        90%,
        100% {
            /* Rest — seamless loop back to frame 1 */
            transform: scaleX(1) scaleY(1) translateY(0);
        }
    }

    /* ── Idle: gentle breathing bob ────────────────────────────────────── */
    @keyframes sprite-idle-bounce {
        0%,
        100% {
            transform: scaleY(1) translateY(0);
        }
        50% {
            transform: scaleY(1.008) translateY(-1.2%);
        }
    }

    .sprite.svelte-xblzin {
        overflow: hidden;
        background-repeat: no-repeat;
        transform-origin: 50% 85%;
        will-change: background-position, transform;
    }

    .loading.svelte-xblzin {
        background: var(--backgroundMain, #f0f0f0);
        border-radius: 8px;
    }

    .crisp.svelte-xblzin {
        image-rendering: pixelated;
        image-rendering: crisp-edges;
    }
.help.svelte-13zoru2 {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 700px) {
  .help.svelte-13zoru2 {
    flex-direction: column;
  }
}
.help.svelte-13zoru2 ul:where(.svelte-13zoru2) {
  width: 250px !important;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 700px) {
  .help.svelte-13zoru2 ul:where(.svelte-13zoru2) {
    width: 100% !important;
  }
}
.help.svelte-13zoru2 ul:where(.svelte-13zoru2) li:where(.svelte-13zoru2) {
  border: solid 1px var(--border);
  border-radius: var(--radius);
  padding: 10px 15px;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .help.svelte-13zoru2 ul:where(.svelte-13zoru2) li:where(.svelte-13zoru2) {
    width: 100% !important;
  }
}
.help.svelte-13zoru2 ul:where(.svelte-13zoru2) li:where(.svelte-13zoru2):hover {
  background: var(--backgroundMain);
}
.help.svelte-13zoru2 ul:where(.svelte-13zoru2) li.--active:where(.svelte-13zoru2) {
  color: var(--white);
  background: var(--black);
}
.help__images.svelte-13zoru2 {
  width: 100%;
}
.help__images.svelte-13zoru2 img:where(.svelte-13zoru2) {
  width: 100%;
  border-radius: var(--radius);
  border: solid 1px var(--border);
  margin-top: 30px;
}
.help__imageContent.svelte-13zoru2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
/*
  This component is rendered inside the shared right-panel Modal.
  We only override what’s needed to match existing dashboard/modals.
*/
.creativeGen.svelte-pt7l45 {
  position: relative;
}
.creativeGen__loading.svelte-pt7l45 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 18, 31, 0.82);
  z-index: 2;
  border-radius: 12px;
}
.creativeGen__error.svelte-pt7l45 {
  background: var(--backgroundMain);
  border: solid 1px var(--border);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 12px;
  color: var(--black);
}
.creativeGen__hint.svelte-pt7l45 {
  margin: 0 0 12px 0;
  color: var(--subtleText, var(--grey));
  font-size: var(--text);
}
.creativeGen__topActions.svelte-pt7l45 {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.creativeGen__topActions.svelte-pt7l45 button:where(.svelte-pt7l45) {
  padding: 14px 18px !important;
  font-size: 13px !important;
}
.creativeGen__lang.svelte-pt7l45 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.creativeGen__lang.svelte-pt7l45 label:where(.svelte-pt7l45) {
  margin: 0;
  font-size: 12px;
  color: var(--subtleText, var(--grey));
}
.creativeGen__langSelect.svelte-pt7l45 {
  height: 36px;
  border: solid 1px var(--border);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--backgroundAside);
  color: var(--black);
  font-size: 12px;
}
.creativeGen__fileInput.svelte-pt7l45 {
  display: none;
}
.creativeGen__grid.svelte-pt7l45 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media only screen and (max-width: 700px) {
  .creativeGen__grid.svelte-pt7l45 {
    grid-template-columns: 1fr;
  }
}
.creativeGen--select.svelte-pt7l45 .creativeGen__grid:where(.svelte-pt7l45) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media only screen and (max-width: 700px) {
  .creativeGen--select.svelte-pt7l45 .creativeGen__grid:where(.svelte-pt7l45) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.creativeGen--select.svelte-pt7l45 .creativeGen__thumb:where(.svelte-pt7l45) {
  height: 150px;
  object-fit: contain;
  background: var(--white);
}
/* (empty) .creativeGen {
  /* Cards are buttons, so override global %button styles *\/
}*/
.creativeGen__card.svelte-pt7l45 {
  width: 100% !important;
  padding: 0 !important;
  border-radius: var(--radius) !important;
  background: var(--white) !important;
  border: solid 1px var(--border) !important;
  color: var(--black) !important;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch !important;
  justify-content: flex-start !important;
  text-align: left !important;
}
.creativeGen__card.svelte-pt7l45:hover {
  filter: brightness(0.98);
}
.creativeGen__thumb.svelte-pt7l45 {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  background: var(--backgroundMain);
}
.creativeGen__meta.svelte-pt7l45 {
  padding: 12px;
  display: grid;
  gap: 6px;
}
.creativeGen__title.svelte-pt7l45 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}
.creativeGen__icon.svelte-pt7l45 {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--backgroundMain);
  border: solid 1px var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.creativeGen__sub.svelte-pt7l45 {
  color: var(--subtleText, var(--grey));
  font-size: 13px;
}
.creativeGen__editor.svelte-pt7l45 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 12px;
  align-items: start;
}
@media only screen and (max-width: 700px) {
  .creativeGen__editor.svelte-pt7l45 {
    grid-template-columns: 1fr;
  }
}
.creativeGen__preview.svelte-pt7l45 {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: solid 1px var(--border);
  background: var(--white);
  /* "Zoom out" effect: always show the full creative */
  height: clamp(420px, 72vh, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.creativeGen__preview--scroll.svelte-pt7l45 {
  overflow: auto;
  display: block;
}
.creativeGen__zoom.svelte-pt7l45 {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  background: var(--white);
  border: solid 1px var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--subtleText, var(--grey));
}
.creativeGen__stage.svelte-pt7l45 {
  position: relative;
  display: block;
  width: calc(var(--stage-w) * var(--zoom));
  height: calc(var(--stage-h) * var(--zoom));
  flex: none;
}
.creativeGen__canvas.svelte-pt7l45 {
  display: block;
  width: 100%;
  height: 100%;
}
/* (empty) .creativeGen {
  /* Drag handles must not look like pill buttons *\/
}*/
.creativeGen__handle.svelte-pt7l45 {
  position: absolute;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  border-radius: 12px !important;
  outline: 2px dashed var(--primary);
  outline-offset: -2px;
  cursor: grab;
  opacity: 0.9;
  touch-action: none;
  /* Ensure inner resize knob can position reliably */
  display: block;
  overflow: visible;
}
.creativeGen__handle.svelte-pt7l45:active {
  cursor: grabbing;
}
.creativeGen__handle.svelte-pt7l45::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--primary);
  border: solid 2px var(--primary);
  box-sizing: border-box;
}
.creativeGen__controls.svelte-pt7l45 {
  border: solid 1px var(--border);
  border-radius: var(--radius);
  padding: 10px;
  background: var(--white);
  display: grid;
  gap: 8px;
  max-height: clamp(420px, 80vh, 920px);
  overflow: auto;
}
.creativeGen__controls.svelte-pt7l45 input[type=checkbox]:where(.svelte-pt7l45) {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: solid 1px var(--black);
  background: var(--white);
  display: inline-grid;
  place-items: center;
  margin: 0;
  flex: none;
}
.creativeGen__controls.svelte-pt7l45 input[type=checkbox]:where(.svelte-pt7l45)::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: transparent;
}
.creativeGen__controls.svelte-pt7l45 input[type=checkbox]:where(.svelte-pt7l45):checked {
  border-color: var(--primary);
  background: var(--primary);
}
.creativeGen__controls.svelte-pt7l45 input[type=checkbox]:where(.svelte-pt7l45):checked::after {
  background: var(--border);
}
.creativeGen__controls.svelte-pt7l45 input[type=checkbox]:where(.svelte-pt7l45):disabled {
  opacity: 0.5;
}
.creativeGen__controls.svelte-pt7l45 input[type=range]:where(.svelte-pt7l45) {
  padding: 0;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: var(--backgroundMain);
}
.creativeGen__controls.svelte-pt7l45 input[type=range]:where(.svelte-pt7l45)::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: var(--backgroundMain);
}
.creativeGen__controls.svelte-pt7l45 input[type=range]:where(.svelte-pt7l45)::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--white);
  border: solid 2px var(--primary);
  box-shadow: none;
}
.creativeGen__controls.svelte-pt7l45 input[type=range]:where(.svelte-pt7l45)::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--white);
  border: solid 2px var(--primary);
  box-shadow: none;
}
.creativeGen__controls.svelte-pt7l45 input[type=range]:where(.svelte-pt7l45)::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: var(--backgroundMain);
}
.creativeGen__row.svelte-pt7l45 {
  display: grid;
  gap: 10px;
  margin: 6px 8px;
}
.creativeGen__row.svelte-pt7l45 label:where(.svelte-pt7l45) {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--subtleText, var(--grey));
  font-size: 12px;
}
.creativeGen__row--inline.svelte-pt7l45 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.creativeGen__row--inline.svelte-pt7l45 button:where(.svelte-pt7l45) {
  padding: 10px 12px !important;
}
.creativeGen__row--inline.svelte-pt7l45 label:where(.svelte-pt7l45) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.creativeGen__actions.svelte-pt7l45 {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  /* Keep the secondary download button aligned with Caloo primary (no blue outline) */
}
.creativeGen__actions.svelte-pt7l45 button.--primaryBorder {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  box-shadow: inset 0 0 0 1px var(--primary) !important;
}
.creativeGen__actions.svelte-pt7l45 button:where(.svelte-pt7l45) {
  width: 100% !important;
  font-size: 13px !important;
}
/* (empty) .creativeGen {
  /* Slightly compact the default button paddings inside controls *\/
}*/
.creativeGen__controls.svelte-pt7l45 .--primary:where(.svelte-pt7l45),
.creativeGen__controls.svelte-pt7l45 .--primaryBorder:where(.svelte-pt7l45),
.creativeGen__controls.svelte-pt7l45 .--cancel:where(.svelte-pt7l45) {
  padding: 12px 14px !important;
  font-size: 13px !important;
}.userProfile.svelte-16761ul {
  background: var(--backgroundMain);
  width: 100%;
  height: 100%;
  overflow: auto;
}
.userProfile.svelte-16761ul:not(.userProfile--embedded) {
  top: 0;
  position: fixed;
}
.userProfile.userProfile--embedded.svelte-16761ul {
  position: relative;
  top: auto;
  height: auto;
  min-height: 100%;
  padding-bottom: 16px;
  margin-bottom: 50px;
}
.userProfile.svelte-16761ul label:where(.svelte-16761ul) {
  display: block;
}
.userProfile__actions.svelte-16761ul {
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}
.userProfile__actions.svelte-16761ul button.--primary {
  width: 100%;
  max-width: 600px;
}
.userProfile.svelte-16761ul .section__content:where(.svelte-16761ul) {
  padding: 0 20px;
  margin-bottom: 40px;
}
.userProfile.svelte-16761ul .section__content:where(.svelte-16761ul) input:where(.svelte-16761ul) {
  background: var(--backgroundAside);
}

.userProfile .file {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.userProfile .file__image {
  width: 120px !important;
  height: 120px;
  padding: 0;
  border-radius: 50%;
  object-fit: cover;
  background: var(--backgroundAside);
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.--remove.svelte-16761ul {
  border-radius: 10px;
  border-bottom: solid 1px var(--backgroundAside);
  padding: 20px;
  margin: 40px 0;
  background: var(--white);
}
.--remove.svelte-16761ul p:where(.svelte-16761ul) {
  color: var(--black);
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 15px;
}
.--remove.svelte-16761ul button:where(.svelte-16761ul) {
  width: 100%;
  background: var(--white);
  color: var(--error);
  border: solid 1px var(--error);
  border-radius: 100px;
}

.section__content.svelte-16761ul .--remove:where(.svelte-16761ul) {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.section__content.svelte-16761ul .--remove:where(.svelte-16761ul) p:where(.svelte-16761ul) {
  color: var(--error);
  font-weight: 600;
  margin-bottom: 8px;
}
.section__content.svelte-16761ul .--delete:where(.svelte-16761ul) {
  background: transparent;
  color: var(--error);
  border: 1px solid var(--error);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.section__content.svelte-16761ul .legalDocs:where(.svelte-16761ul) {
  margin-top: 16px;
  padding: 16px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--backgroundAside);
}
.section__content.svelte-16761ul .legalDocs__title:where(.svelte-16761ul) {
  margin: 0 0 10px 0;
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
}
.section__content.svelte-16761ul .legalDocs__links:where(.svelte-16761ul) {
  display: grid;
  gap: 8px;
}
.section__content.svelte-16761ul .legalDocs__link:where(.svelte-16761ul) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  text-decoration: underline;
  font-weight: 500;
  font-size: 13px;
}
.referrals__title.svelte-smu2r7 {
  width: auto;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.01em;
}

.referralsTop.svelte-smu2r7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.referrals__brand.svelte-smu2r7 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.referrals__logo.svelte-smu2r7 {
  height: 32px;
  width: auto;
  object-fit: contain;
  flex: none;
}

/* ========== CONTENEDOR PRINCIPAL ========== */
.referrals.svelte-smu2r7 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  background: var(--backgroundMain);
  color: var(--textColor);
  min-height: 100vh;
}
@media (max-width: 520px) {
  .referrals.svelte-smu2r7 {
    padding: 20px 16px;
  }
}
.referrals__header.svelte-smu2r7 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.referrals__header.svelte-smu2r7 .referrals__help:where(.svelte-smu2r7) {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  color: inherit;
}
.referrals__header.svelte-smu2r7 i:where(.svelte-smu2r7) {
  font-size: 24px;
  color: var(--subtleText);
  cursor: pointer;
  transition: 0.2s;
}
.referrals__header.svelte-smu2r7 i:where(.svelte-smu2r7):hover {
  color: var(--black);
}

/* ========== LAYOUT PLATAFORMA ========== */
.referrals__layout.svelte-smu2r7 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  align-items: start;
}
@media (max-width: 980px) {
  .referrals__layout.svelte-smu2r7 {
    grid-template-columns: 1fr;
  }
}

.referrals__main.svelte-smu2r7 {
  min-width: 0;
}

.referrals__side.svelte-smu2r7 {
  display: grid;
  gap: 18px;
}

.referralsPanel.svelte-smu2r7 {
  display: grid;
  gap: 16px;
}

.referralsPanel__header.svelte-smu2r7 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 980px) {
  .referralsPanel__header.svelte-smu2r7 {
    flex-direction: column;
    align-items: stretch;
  }
}

.referralsPanel__title.svelte-smu2r7 h4:where(.svelte-smu2r7) {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}
.referralsPanel__title.svelte-smu2r7 p:where(.svelte-smu2r7) {
  margin: 6px 0 0 0;
  font-size: 13px;
  color: var(--subtleText);
  line-height: 1.35;
}

.referralsPanel__toolbar.svelte-smu2r7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.referralsPanel__toolbar--metrics.svelte-smu2r7 {
  justify-content: flex-start;
}

.periodBar.svelte-smu2r7 {
  display: grid;
  gap: 2px;
}

.periodBar__label.svelte-smu2r7 {
  font-size: 13px;
  color: var(--subtleText);
  font-weight: 600;
}
.periodBar__label.svelte-smu2r7 strong:where(.svelte-smu2r7) {
  color: var(--black);
  font-weight: 700;
}

.periodBar__updated.svelte-smu2r7 {
  font-size: 12px;
  color: var(--subtleText);
  line-height: 1.2;
}

.referralsTabs.svelte-smu2r7 {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--backgroundMain);
  flex: none;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.referralsTabs.svelte-smu2r7 button:where(.svelte-smu2r7) {
  border: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--subtleText);
  cursor: pointer;
  transition: 0.15s;
}
.referralsTabs.svelte-smu2r7 button.isActive:where(.svelte-smu2r7) {
  background: var(--primary);
  color: var(--backgroundMain);
  box-shadow: 0 2px 10px rgba(76, 227, 157, 0.18);
}

.referralsTabSelect.svelte-smu2r7 {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--backgroundMain);
  color: var(--textColor);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  appearance: none;
}

.rangePicker.svelte-smu2r7 {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--backgroundMain);
}
.rangePicker.svelte-smu2r7 button:where(.svelte-smu2r7) {
  border: none;
  background: transparent;
  padding: 9px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--subtleText);
  cursor: pointer;
  transition: 0.15s;
}
.rangePicker.svelte-smu2r7 button.isActive:where(.svelte-smu2r7) {
  background: var(--primary);
  color: var(--backgroundMain);
  box-shadow: 0 1px 6px rgba(76, 227, 157, 0.15);
}

.quickActions.svelte-smu2r7 {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}
.quickActions.svelte-smu2r7 .button:where(.svelte-smu2r7) {
  padding: 9px 12px;
  font-size: 13px;
}

.partnerProfileModal .modal__content {
  width: min(420px, 100%);
}

.partnerProfileModal .modal__content .partnerProfilePanel.svelte-smu2r7 {
  padding-bottom: 8px;
}

.kpiGrid.svelte-smu2r7 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px) {
  .kpiGrid.svelte-smu2r7 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .kpiGrid.svelte-smu2r7 {
    grid-template-columns: 1fr;
  }
}

.kpiGrid--3.svelte-smu2r7 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .kpiGrid--3.svelte-smu2r7 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .kpiGrid--3.svelte-smu2r7 {
    grid-template-columns: 1fr;
  }
}

.kpi.svelte-smu2r7 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: grid;
  gap: 6px;
  box-shadow: var(--cardShadow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.kpi.svelte-smu2r7:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.kpi__value.svelte-smu2r7 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
}

.kpi__label.svelte-smu2r7 {
  font-size: 12px;
  color: var(--subtleText);
  line-height: 1.25;
}

.grid2.svelte-smu2r7 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px) {
  .grid2.svelte-smu2r7 {
    grid-template-columns: 1fr;
  }
}

.panelCard.svelte-smu2r7 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: var(--cardShadow);
}

.panelCard__title.svelte-smu2r7 {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

.panelCard__chart.svelte-smu2r7 {
  min-height: 220px;
  min-width: 0;
  overflow: hidden;
}

.panelCard__footer.svelte-smu2r7 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: var(--subtleText);
  font-size: 12px;
}
.panelCard__footer.svelte-smu2r7 strong:where(.svelte-smu2r7) {
  color: var(--black);
}

.activityList.svelte-smu2r7 {
  display: grid;
  gap: 10px;
}

.activityItem.svelte-smu2r7 {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}
.activityItem.svelte-smu2r7 .bullet:where(.svelte-smu2r7) {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}
.activityItem.svelte-smu2r7 .text:where(.svelte-smu2r7) {
  display: grid;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}
.activityItem.svelte-smu2r7 .text:where(.svelte-smu2r7) .details:where(.svelte-smu2r7) {
  font-size: 12px;
  font-weight: 500;
  color: var(--subtleText);
}
.activityItem.svelte-smu2r7 .time:where(.svelte-smu2r7) {
  font-size: 12px;
  color: var(--subtleText);
}

.referralsEmpty.svelte-smu2r7 {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  background: var(--white);
}
.referralsEmpty.svelte-smu2r7 h5:where(.svelte-smu2r7) {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.referralsEmpty.svelte-smu2r7 p:where(.svelte-smu2r7) {
  margin: 8px 0 0 0;
  color: var(--subtleText);
  font-size: 13px;
  line-height: 1.35;
}

.referralsEmpty__steps.svelte-smu2r7 {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.referralsEmpty__steps.svelte-smu2r7 .step:where(.svelte-smu2r7) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--black);
  font-weight: 600;
}
.referralsEmpty__steps.svelte-smu2r7 .dot:where(.svelte-smu2r7) {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  background: var(--backgroundMain);
  flex: none;
}

.rows.svelte-smu2r7 {
  display: grid;
  gap: 10px;
}

.row.svelte-smu2r7 {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.summaryList.svelte-smu2r7 {
  display: grid;
  gap: 10px;
}

.summary.svelte-smu2r7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  font-size: 13px;
}
.summary.svelte-smu2r7 span:where(.svelte-smu2r7) {
  color: var(--subtleText);
}

.tableLike.svelte-smu2r7 {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tableLike__head.svelte-smu2r7 {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 10px;
  padding: 12px 14px;
  background: var(--backgroundMain);
  font-size: 12px;
  color: var(--subtleText);
  font-weight: 700;
}

.tableLike__body.svelte-smu2r7 {
  display: grid;
}

.tableLike__row.svelte-smu2r7 {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  align-items: center;
}
.tableLike__row.svelte-smu2r7:hover {
  background: rgba(76, 227, 157, 0.06);
}

.badge.svelte-smu2r7 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--backgroundMain);
  font-size: 12px;
  font-weight: 700;
  color: var(--textColor);
  width: fit-content;
}

.badge--active.svelte-smu2r7,
.badge--subscribed.svelte-smu2r7 {
  border-color: var(--primary);
}

.badge--trialing.svelte-smu2r7,
.badge--registered.svelte-smu2r7 {
  border-color: var(--border);
}

.badge--past_due.svelte-smu2r7,
.badge--canceled.svelte-smu2r7 {
  border-color: var(--border);
  color: var(--subtleText);
}

.badge--installed.svelte-smu2r7 {
  border-color: var(--border);
  color: var(--subtleText);
}

.mono.svelte-smu2r7 {
  font-variant-numeric: tabular-nums;
}

.right.svelte-smu2r7 {
  text-align: right;
}

/* ========== PERFIL ARRIBA ========== */
.referralsProfile.svelte-smu2r7 {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 6px 6px 6px;
  box-shadow: var(--cardShadow);
  transition: 0.2s;
}
.referralsProfile.svelte-smu2r7:hover {
  background: var(--border);
}
.referralsProfile__main.svelte-smu2r7 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px 0 0;
  background: transparent;
  border: none;
  cursor: pointer;
  appearance: none;
  font: inherit;
  color: inherit;
}
.referralsProfile__main.svelte-smu2r7:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 40px;
}
.referralsProfile__main.svelte-smu2r7 img:where(.svelte-smu2r7) {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.referralsProfile__main.svelte-smu2r7 span:where(.svelte-smu2r7) {
  font-size: 14px;
  font-weight: 500;
  color: var(--textColor);
}
.referralsProfile__logout.svelte-smu2r7 {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--subtleText);
  cursor: pointer;
  transition: 0.15s;
}
.referralsProfile__logout.svelte-smu2r7:hover {
  background: var(--backgroundAside);
  color: var(--black);
}
.referralsProfile__logout.svelte-smu2r7:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ========== CARD BASE ========== */
.card.svelte-smu2r7, .referrals__products.svelte-smu2r7, .referrals__stripe.svelte-smu2r7, .referrals__linkClient.svelte-smu2r7, .referrals__creatives.svelte-smu2r7, .referrals__qrLink.svelte-smu2r7, .referralsPanel.svelte-smu2r7 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--cardShadow);
}

/* ========== REFERRAL INPUT ========== */
.referrals__qrLink.svelte-smu2r7 {
  display: grid;
  gap: 14px;
}
@media (max-width: 980px) {
  .referrals__qrLink.svelte-smu2r7 {
    order: -1;
  }
}
.referrals__qrLink.svelte-smu2r7 .referralField:where(.svelte-smu2r7) {
  display: grid;
  gap: 8px;
}
.referrals__qrLink.svelte-smu2r7 .referralField:where(.svelte-smu2r7) label:where(.svelte-smu2r7) {
  font-size: 13px;
  color: var(--subtleText);
  display: block;
}
.referrals__qrLink.svelte-smu2r7 .referralField__hint:where(.svelte-smu2r7) {
  margin: -2px 0 0 0;
  color: var(--subtleText);
  font-size: 12px;
  line-height: 1.35;
}
.referrals__qrLink.svelte-smu2r7 .referralField__row:where(.svelte-smu2r7) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.referrals__qrLink.svelte-smu2r7 .referralField__row:where(.svelte-smu2r7) input:where(.svelte-smu2r7) /* (unused) .referrals__qrLink .referralField__row textarea*/ {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  box-sizing: border-box;
}
.referrals__qrLink.svelte-smu2r7 .referralField__row:where(.svelte-smu2r7) input:where(.svelte-smu2r7):focus /* (unused) .referrals__qrLink .referralField__row textarea:focus*/ {
  outline: none;
  border-color: var(--primary);
}
.referrals__qrLink.svelte-smu2r7 .referralField__row:where(.svelte-smu2r7) input:where(.svelte-smu2r7) {
  height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* (unused) .referrals__qrLink .referralField__row textarea {
  min-height: 44px;
  padding: 10px 14px;
  line-height: 1.25;
  resize: none;
  overflow: hidden;
  white-space: normal;
  word-break: break-all;
}*/
.referrals__qrLink.svelte-smu2r7 .referralQr:where(.svelte-smu2r7) {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.referrals__qrLink.svelte-smu2r7 .referralQr__head:where(.svelte-smu2r7) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.referrals__qrLink.svelte-smu2r7 .referralQr__head:where(.svelte-smu2r7) span:where(.svelte-smu2r7) {
  font-size: 13px;
  color: var(--subtleText);
  font-weight: 600;
}
.referrals__qrLink.svelte-smu2r7 .referralQr__hint:where(.svelte-smu2r7) {
  margin: 0;
  color: var(--subtleText);
  font-size: 12px;
  line-height: 1.35;
}
.referrals__qrLink.svelte-smu2r7 .referrals__QRGenertor:where(.svelte-smu2r7) {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 16px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.referrals__qrLink.svelte-smu2r7 .referrals__QRGenertor:where(.svelte-smu2r7):empty {
  background: #ffffff;
}

.referrals__QRGenertor svg {
  width: 100%;
  height: auto;
  max-width: 120px;
}

/* Icon buttons */
.iconAction.svelte-smu2r7 {
  width: 44px;
  height: 44px;
  background: var(--backgroundMain);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  place-items: center;
  cursor: pointer;
  transition: 0.18s;
  position: relative;
  padding: 0;
  font: inherit;
  color: var(--subtleText);
  box-sizing: border-box;
}
.iconAction.svelte-smu2r7:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.iconAction.svelte-smu2r7 i:where(.svelte-smu2r7) {
  font-size: 18px;
  color: inherit;
  line-height: 1;
  display: block;
}
.iconAction.svelte-smu2r7:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(76, 227, 157, 0.1);
}
.iconAction.svelte-smu2r7 p:where(.svelte-smu2r7) {
  display: none;
  position: absolute;
  top: -32px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
}
.iconAction.svelte-smu2r7:hover p:where(.svelte-smu2r7) {
  display: block;
}

.iconAction--mini.svelte-smu2r7 {
  width: 44px;
  height: 44px;
}

/* ========== BOTONES ========== */
.button.svelte-smu2r7 {
  border-radius: var(--radius);
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: 0.18s;
}
.button.svelte-smu2r7:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.button.--primary.svelte-smu2r7 {
  background: var(--primary);
  color: var(--white);
}
.button.--primary.svelte-smu2r7:hover {
  filter: brightness(0.92);
}

.button.--secondary.svelte-smu2r7 {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.button.--secondary.svelte-smu2r7:hover {
  background: rgba(76, 227, 157, 0.12);
}

.button.--success.svelte-smu2r7 {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
}

.button.--delete.svelte-smu2r7 {
  background: none;
  border: none;
  color: #d9534f;
}

/* Alineación de botones editar código */
.referrals__qrLink.editing.svelte-smu2r7 .referrals__buttons:where(.svelte-smu2r7) {
  margin-left: auto;
  display: flex;
  gap: 12px;
}
.referrals__qrLink.editing.svelte-smu2r7 .referrals__buttons:where(.svelte-smu2r7) .button:where(.svelte-smu2r7) {
  padding: 10px 14px;
  font-size: 13px;
}

/* ========== CREATIVIDADES ========== */
.referrals__creatives.svelte-smu2r7 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.referrals__creatives.svelte-smu2r7 h4:where(.svelte-smu2r7) {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}
.referrals__creatives.svelte-smu2r7 .creatives-description:where(.svelte-smu2r7) {
  margin: 0;
  color: var(--subtleText);
  font-size: 13px;
  line-height: 1.35;
}
.referrals__creatives.svelte-smu2r7 .button:where(.svelte-smu2r7) {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ========== LINK CLIENT ========== */
.referrals__linkClient.svelte-smu2r7 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.linkClient__trigger.svelte-smu2r7 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1.5px dashed var(--primary);
  border-radius: var(--radius);
  background: transparent;
  color: var(--primary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  width: 100%;
  justify-content: center;
}
.linkClient__trigger.svelte-smu2r7 i:where(.svelte-smu2r7) {
  font-size: 16px;
}
.linkClient__trigger.svelte-smu2r7:hover {
  background: rgba(var(--primaryRgb, 80, 200, 120), 0.08);
  border-style: solid;
}

.linkClient__form.svelte-smu2r7 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.linkClient__form.svelte-smu2r7 h4:where(.svelte-smu2r7) {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.linkClient__desc.svelte-smu2r7 {
  margin: 0;
  font-size: 13px;
  color: var(--subtleText);
  line-height: 1.4;
}

.linkClient__inputRow.svelte-smu2r7 {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.linkClient__inputRow.svelte-smu2r7 input:where(.svelte-smu2r7) {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: var(--white);
  color: var(--textColor);
  transition: border-color 0.15s;
}
.linkClient__inputRow.svelte-smu2r7 input:where(.svelte-smu2r7):focus {
  border-color: var(--primary);
}
.linkClient__inputRow.svelte-smu2r7 input:where(.svelte-smu2r7)::placeholder {
  color: var(--subtleText);
  opacity: 0.7;
}
.linkClient__inputRow.svelte-smu2r7 .button:where(.svelte-smu2r7) {
  white-space: nowrap;
  flex-shrink: 0;
}

.linkClient__error.svelte-smu2r7 {
  margin: 0;
  font-size: 13px;
  color: var(--danger, #e53e3e);
  font-weight: 600;
}

.linkClient__cancel.svelte-smu2r7 {
  align-self: flex-start;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--subtleText);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.15s;
}
.linkClient__cancel.svelte-smu2r7:hover {
  color: var(--textColor);
}

.linkClient__result.svelte-smu2r7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 12px 0;
}
.linkClient__result.svelte-smu2r7 i:where(.svelte-smu2r7) {
  font-size: 28px;
}
.linkClient__result.svelte-smu2r7 p:where(.svelte-smu2r7) {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  max-width: 280px;
}

.linkClient__result--success.svelte-smu2r7 i:where(.svelte-smu2r7) {
  color: var(--success, #38a169);
}

.linkClient__result--warn.svelte-smu2r7 i:where(.svelte-smu2r7) {
  color: var(--warning, #dd6b20);
}

.linkClient__result--info.svelte-smu2r7 i:where(.svelte-smu2r7) {
  color: var(--primary);
}

.linkClient__action.svelte-smu2r7 {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--backgroundMain);
  color: var(--textColor);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 4px;
}
.linkClient__action.svelte-smu2r7:hover {
  background: var(--white);
  border-color: var(--primary);
}

/* ========== STRIPE ========== */
.referrals__stripe.svelte-smu2r7 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.referrals__stripe.svelte-smu2r7 .referrals__buttons:where(.svelte-smu2r7) {
  display: flex;
  gap: 12px;
}

/* ========== PRODUCTOS ========== */
.referrals__products.svelte-smu2r7 ul:where(.svelte-smu2r7) {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.referrals__products.svelte-smu2r7 ul:where(.svelte-smu2r7) li:where(.svelte-smu2r7) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.prodInfo.svelte-smu2r7 {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 60%;
}

.prodInfo.svelte-smu2r7 img:where(.svelte-smu2r7) {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  object-fit: cover;
}

.prodText.svelte-smu2r7 strong:where(.svelte-smu2r7) {
  font-size: 15px;
  font-weight: 600;
}

.prodText.svelte-smu2r7 span:where(.svelte-smu2r7) {
  color: var(--subtleText);
  font-size: 13px;
}

/* ========== SNACKBAR ========== */
.snackbar.svelte-smu2r7 {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--backgroundMain);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  border: none;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(76, 227, 157, 0.3);
}

.referralField__row.svelte-smu2r7 input:where(.svelte-smu2r7) {
  margin-bottom: 0px !important;
}

/* ========== RESPONSIVE ========== */
/* ===== RESPONSIVE: CORREGIR LA SECCIÓN DEL CÓDIGO ===== */
@media (max-width: 640px) {
  .referrals__title.svelte-smu2r7 {
    font-size: 18px;
  }
  .referralsTop.svelte-smu2r7 {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }
  .referrals__brand.svelte-smu2r7 {
    width: 100%;
  }
  .referrals__header.svelte-smu2r7 {
    width: 100%;
    justify-content: space-between;
  }
  .referrals__help.svelte-smu2r7 {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--cardShadow);
  }
  .referrals__help.svelte-smu2r7 i:where(.svelte-smu2r7) {
    font-size: 20px;
    color: var(--subtleText);
  }
  .referrals__qrLink.svelte-smu2r7 {
    gap: 14px;
  }
  .referrals__qrLink.svelte-smu2r7 .referralField:where(.svelte-smu2r7) label:where(.svelte-smu2r7) {
    font-size: 11px;
  }
  .referrals__qrLink.svelte-smu2r7 .referralField__row:where(.svelte-smu2r7) input:where(.svelte-smu2r7) {
    font-size: 13px;
  }
  .referrals__qrLink.svelte-smu2r7 .referrals__QRGenertor:where(.svelte-smu2r7) {
    min-height: 200px;
  }
  .referrals__qrLink.editing.svelte-smu2r7 .referrals__buttons:where(.svelte-smu2r7) {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .referrals__products.svelte-smu2r7 .button:where(.svelte-smu2r7) {
    padding: 15px 10px !important;
  }
  .snackbar.svelte-smu2r7 {
    font-size: 12px;
  }
  .referralsProfile.svelte-smu2r7 {
    max-width: min(360px, 100%);
    margin-left: auto;
  }
  .referralsProfile__main.svelte-smu2r7 {
    min-width: 0;
  }
  .referralsProfile__main.svelte-smu2r7 span:where(.svelte-smu2r7) {
    max-width: 48vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .referralsProfile.svelte-smu2r7 span:where(.svelte-smu2r7) {
    font-size: 12px;
  }
  .referralsTabs.svelte-smu2r7,
  .referralsTabSelect.svelte-smu2r7 {
    width: 100%;
  }
  .referralsPanel__toolbar.svelte-smu2r7 {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .quickActions.svelte-smu2r7 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .quickActions.svelte-smu2r7 .button:where(.svelte-smu2r7) {
    width: 100%;
    justify-content: center;
  }
  .quickActions.svelte-smu2r7 .button:where(.svelte-smu2r7):last-child {
    grid-column: 1/-1;
  }
  .card.svelte-smu2r7, .referralsPanel.svelte-smu2r7, .referrals__qrLink.svelte-smu2r7, .referrals__creatives.svelte-smu2r7, .referrals__linkClient.svelte-smu2r7, .referrals__stripe.svelte-smu2r7, .referrals__products.svelte-smu2r7 {
    padding: 16px;
  }
}.partnerOnb.svelte-1jtdbzo {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  background: var(--backgroundMain);
}

.partnerOnb__loading.svelte-1jtdbzo {
  width: 100%;
  display: flex;
  justify-content: center;
}

.partnerOnb__card.svelte-1jtdbzo {
  width: 100%;
  max-width: 560px;
  background: var(--backgroundAside);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--cardShadow);
  color: var(--black);
}

.partnerOnb__header.svelte-1jtdbzo {
  margin-bottom: 14px;
}

.partnerOnb__step.svelte-1jtdbzo {
  font-size: 12px;
  color: var(--subtleText);
}

.partnerOnb__title.svelte-1jtdbzo {
  margin: 6px 0 0;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.partnerOnb__content.svelte-1jtdbzo {
  padding: 6px 0 14px;
}

.partnerOnb__content.svelte-1jtdbzo h2:where(.svelte-1jtdbzo) {
  margin: 8px 0 6px;
  font-size: 18px;
}

.partnerOnb__content.svelte-1jtdbzo p:where(.svelte-1jtdbzo) {
  margin: 0;
  color: var(--subtleText);
  font-size: 13px;
  line-height: 1.35;
}

.partnerOnb__bullets.svelte-1jtdbzo {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.partnerOnb__bullet.svelte-1jtdbzo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--black);
}

.partnerOnb__dot.svelte-1jtdbzo {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  flex: 0 0 auto;
}

.partnerOnb__brandGrid.svelte-1jtdbzo {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 10px;
}

.partnerOnb__label.svelte-1jtdbzo {
  display: block;
  font-size: 13px;
  color: var(--subtleText);
  margin: 12px 0 6px;
}

.partnerOnb__input.svelte-1jtdbzo {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 14px;
}

.partnerOnb__input.svelte-1jtdbzo:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.partnerOnb__hint.svelte-1jtdbzo {
  margin-top: 8px;
  font-size: 12px;
  color: var(--subtleText);
}

.partnerOnb__trust.svelte-1jtdbzo {
  margin-top: 12px !important;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--subtleText);
  font-size: 12px;
  line-height: 1.35;
}

.partnerOnb__error.svelte-1jtdbzo {
  margin-top: 8px;
  font-size: 12px;
  color: var(--error);
}

.partnerOnb__ok.svelte-1jtdbzo {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
}

.partnerOnb__row.svelte-1jtdbzo {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
}

.partnerOnb__status.svelte-1jtdbzo {
  font-size: 13px;
  color: var(--subtleText);
}

.partnerOnb__footer.svelte-1jtdbzo {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.partnerOnb__nav.svelte-1jtdbzo {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--black);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
  flex: 1;
}

.partnerOnb__nav.svelte-1jtdbzo:disabled {
  opacity: 0.55;
}

.partnerOnb__nav--primary.svelte-1jtdbzo {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.partnerOnb__primary.svelte-1jtdbzo {
  width: 100%;
  margin-top: 10px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 14px;
}

.partnerOnb__primary.svelte-1jtdbzo:disabled {
  opacity: 0.65;
}

.partnerOnb__secondary.svelte-1jtdbzo {
  width: 100%;
  margin-top: 10px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--black);
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 14px;
}

@media (max-width: 420px) {
  .partnerOnb__brandGrid.svelte-1jtdbzo {
    grid-template-columns: 1fr;
  }
}.creativityPage.svelte-1dk96gs {
  padding: 18px 18px 0 18px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--backgroundMain);
  color: var(--textColor);
  min-height: 100vh;
}

.creativityPage__header.svelte-1dk96gs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .creativityPage__header.svelte-1dk96gs {
    grid-template-columns: 1fr;
  }
}

.creativityPage__back.svelte-1dk96gs {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  width: fit-content;
  color: var(--black);
}

.creativityPage__title.svelte-1dk96gs h1:where(.svelte-1dk96gs) {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.creativityPage__title.svelte-1dk96gs p:where(.svelte-1dk96gs) {
  margin: 6px 0 0 0;
  font-size: 13px;
  color: var(--subtleText);
  line-height: 1.35;
}

.creativityPage__empty.svelte-1dk96gs {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.creativityPage__empty.svelte-1dk96gs h2:where(.svelte-1dk96gs) {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
}

.creativityPage__empty.svelte-1dk96gs p:where(.svelte-1dk96gs) {
  margin: 0;
  font-size: 13px;
  color: var(--subtleText);
  line-height: 1.35;
}
/* ── Layout ── */
.pp.svelte-68hwg {
  min-height: 100vh;
  background: var(--backgroundMain);
  color: var(--textColor);
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 24px 16px;
  gap: 16px;
  font-family: "Montserrat", sans-serif;
}

/* ── Card ── */
.pp__card.svelte-68hwg {
  width: min(520px, 100%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: var(--cardShadow);
  display: grid;
  gap: 18px;
}

.pp__card--center.svelte-68hwg {
  justify-items: center;
  text-align: center;
  padding: 48px 20px;
}

/* ── Header ── */
.pp__brandHeader.svelte-68hwg {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--backgroundMain);
}

.pp__brand.svelte-68hwg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.pp__brandGroup.svelte-68hwg {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.pp__brandSep.svelte-68hwg {
  font-weight: 900;
  color: var(--subtleText);
  opacity: 0.9;
}

.pp__brandLogo.svelte-68hwg {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.pp__brandLogo--partner.svelte-68hwg {
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--white);
}

.pp__brandFallback.svelte-68hwg {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(76, 227, 157, 0.12);
  border: 1px solid rgba(76, 227, 157, 0.28);
  color: var(--primary);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

.pp__brandText.svelte-68hwg {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.pp__brandName.svelte-68hwg {
  font-size: 14px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
}

.pp__brandPartnerName.svelte-68hwg {
  font-size: 13px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.pp__brandSub.svelte-68hwg {
  font-size: 12px;
  color: var(--subtleText);
  line-height: 1.25;
}

.pp__headline.svelte-68hwg {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.pp__headline.svelte-68hwg h1:where(.svelte-68hwg) {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.pp__headline.svelte-68hwg p:where(.svelte-68hwg) {
  margin: 0;
  font-size: 13px;
  color: var(--subtleText);
  line-height: 1.45;
}

/* ── Portal header (existing flow) ── */
.pp__header.svelte-68hwg {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.pp__mark.svelte-68hwg {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(76, 227, 157, 0.12);
  border: 1px solid rgba(76, 227, 157, 0.28);
  color: var(--primary);
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}

.pp__logo.svelte-68hwg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.pp__headerText.svelte-68hwg h1:where(.svelte-68hwg) {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.pp__headerText.svelte-68hwg p:where(.svelte-68hwg) {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--subtleText);
  line-height: 1.35;
}

/* ── Intro / conversion copy ── */
.pp__intro.svelte-68hwg {
  display: grid;
  gap: 10px;
}

.pp__intro.svelte-68hwg p:where(.svelte-68hwg) {
  margin: 0;
  font-size: 13px;
  color: var(--subtleText);
  line-height: 1.45;
  white-space: pre-line;
}

.pp__bullets.svelte-68hwg {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pp__bullets.svelte-68hwg li:where(.svelte-68hwg) {
  font-size: 13px;
  color: var(--textColor);
  line-height: 1.4;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pp__bullets.svelte-68hwg li:where(.svelte-68hwg)::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  line-height: 1.2;
  margin-top: 1px;
}

.pp__hero.svelte-68hwg {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--backgroundMain);
}

.pp__miniTitle.svelte-68hwg {
  margin: 10px 0 10px !important;
  font-size: 12px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.01em;
}

.pp__security.svelte-68hwg {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--backgroundMain);
  font-size: 12px;
  color: var(--subtleText);
  line-height: 1.45;
  white-space: pre-line;
}

/* ── How-it-works steps ── */
.pp__steps.svelte-68hwg {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--backgroundMain);
}

.pp__steps.svelte-68hwg h3:where(.svelte-68hwg) {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pp__steps.svelte-68hwg ol:where(.svelte-68hwg) {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pp__steps.svelte-68hwg li:where(.svelte-68hwg) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--textColor);
  line-height: 1.35;
}

.pp__stepNum.svelte-68hwg {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #12121f;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── Form ── */
.pp__form.svelte-68hwg {
  display: grid;
  gap: 14px;
}

.pp__formCard.svelte-68hwg {
  padding: 20px;
  border: 1px solid rgba(76, 227, 157, 0.15);
  border-radius: 20px;
  background: linear-gradient(168deg, rgba(76, 227, 157, 0.06) 0%, transparent 60%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(76, 227, 157, 0.06);
}

.pp__label.svelte-68hwg {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.pp__input.svelte-68hwg {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.pp__input.svelte-68hwg::placeholder {
  color: var(--subtleText);
  opacity: 0.5;
}

.pp__input.svelte-68hwg:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(76, 227, 157, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* ── Buttons ── */
.pp__btn.svelte-68hwg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 14px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}

.pp__btn.svelte-68hwg:active:not(:disabled) {
  transform: scale(0.97);
}

.pp__btn.svelte-68hwg:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.pp__btn--primary.svelte-68hwg {
  background: var(--primary);
  color: #12121f;
}

.pp__btn--cta.svelte-68hwg {
  width: 100%;
  padding: 16px 24px !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-radius: 14px;
  background: linear-gradient(180deg, #5aeaa0 0%, var(--primary) 100%);
  box-shadow: 0 4px 14px rgba(76, 227, 157, 0.25), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: opacity 0.15s, transform 0.12s ease, box-shadow 0.2s ease;
}

.pp__btn--cta.svelte-68hwg:hover:not(:disabled) {
  box-shadow: 0 6px 20px rgba(76, 227, 157, 0.3), 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.pp__btn--cta.svelte-68hwg:active:not(:disabled) {
  transform: scale(0.98) translateY(0);
  box-shadow: 0 2px 8px rgba(76, 227, 157, 0.2);
}

.pp__socialProof.svelte-68hwg {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--subtleText);
  text-align: center;
  line-height: 1.4;
  opacity: 0.7;
}

.pp__btn--primary.svelte-68hwg:hover:not(:disabled) {
  background: var(--primaryDim);
}

.pp__btn--secondary.svelte-68hwg {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.pp__btn--secondary.svelte-68hwg:hover:not(:disabled) {
  background: rgba(76, 227, 157, 0.08);
}

.pp__btn--ghost.svelte-68hwg {
  background: transparent;
  color: var(--subtleText);
  padding: 10px 16px;
  font-size: 13px;
}

.pp__btn--ghost.svelte-68hwg:hover:not(:disabled) {
  color: var(--black);
}

.pp__btn--full.svelte-68hwg {
  width: 100%;
}

/* ── Not-Registered ── */
.pp__notReg.svelte-68hwg {
  display: grid;
  gap: 12px;
  text-align: center;
  justify-items: center;
}

.pp__notRegHero.svelte-68hwg {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.pp__notRegIcon.svelte-68hwg {
  font-size: 48px;
  line-height: 1;
}

.pp__notReg.svelte-68hwg h2:where(.svelte-68hwg) {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
}

.pp__notReg.svelte-68hwg > p:where(.svelte-68hwg) {
  margin: 0;
  font-size: 14px;
  color: var(--subtleText);
  line-height: 1.45;
  max-width: 380px;
}

.pp__stores.svelte-68hwg {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.pp__storeBtn.svelte-68hwg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.15s;
}

.pp__storeBtn.svelte-68hwg:hover {
  opacity: 0.85;
}

.pp__storeBtn--apple.svelte-68hwg {
  background: var(--black);
  color: var(--backgroundMain);
}

.pp__storeBtn--google.svelte-68hwg {
  background: var(--primary);
  color: #12121f;
}

.pp__faq.svelte-68hwg {
  width: 100%;
  max-width: 400px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 6px;
}

.pp__faq.svelte-68hwg summary:where(.svelte-68hwg) {
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  cursor: pointer;
  list-style: none;
}

.pp__faq.svelte-68hwg summary:where(.svelte-68hwg)::-webkit-details-marker {
  display: none;
}

.pp__faq.svelte-68hwg p:where(.svelte-68hwg) {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--subtleText);
  line-height: 1.45;
}

/* ── Loading text ── */
.pp__loadingText.svelte-68hwg {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--subtleText);
}

/* ── Banners ── */
.pp__banner.svelte-68hwg {
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.pp__banner--success.svelte-68hwg {
  background: rgba(76, 227, 157, 0.1);
  border: 1px solid rgba(76, 227, 157, 0.35);
  color: var(--primary);
}

.pp__banner--info.svelte-68hwg {
  background: rgba(76, 227, 157, 0.06);
  border: 1px solid rgba(76, 227, 157, 0.2);
  color: var(--primary);
}

/* ── Identity (email) ── */
.pp__identity.svelte-68hwg {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--backgroundMain);
}

.pp__identityLabel.svelte-68hwg {
  font-size: 11px;
  font-weight: 900;
  color: var(--subtleText);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pp__identityValue.svelte-68hwg {
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.pp__changeEmail.svelte-68hwg {
  background: transparent;
  border: none;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.pp__changeEmail.svelte-68hwg:hover {
  background: rgba(76, 227, 157, 0.1);
}

.pp__changeEmail.svelte-68hwg:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 227, 157, 0.18);
}

/* ── Status badges ── */
.pp__status.svelte-68hwg {
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.pp__status--active.svelte-68hwg {
  background: rgba(76, 227, 157, 0.1);
  border: 1px solid rgba(76, 227, 157, 0.3);
  color: var(--success, var(--primary));
}

.pp__sectionTitle.svelte-68hwg {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* ── Plan cards ── */
.pp__plans.svelte-68hwg {
  display: grid;
  gap: 14px;
}

.pp__plan.svelte-68hwg {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 16px;
  background: var(--backgroundMain);
  display: grid;
  gap: 8px;
  transition: border-color 0.15s, transform 0.12s, box-shadow 0.15s;
}

.pp__plan.svelte-68hwg:hover {
  border-color: rgba(76, 227, 157, 0.35);
  transform: translateY(-1px);
}

.pp__plan.svelte-68hwg:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 227, 157, 0.14);
}

.pp__plan--recommended.svelte-68hwg {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.pp__badge.svelte-68hwg {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #12121f;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  z-index: 1;
}

.pp__planImage.svelte-68hwg {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-top: 6px;
}

.pp__planName.svelte-68hwg {
  font-size: 17px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.pp__planPrice.svelte-68hwg {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pp__planAmount.svelte-68hwg {
  font-size: 26px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pp__planDesc.svelte-68hwg {
  font-size: 13px;
  color: var(--subtleText);
  line-height: 1.4;
  margin-top: 2px;
  margin-bottom: 6px;
}

/* ── Benefits ── */
.pp__benefits.svelte-68hwg {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--backgroundMain);
}

.pp__benefits.svelte-68hwg h3:where(.svelte-68hwg) {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
}

.pp__benefits.svelte-68hwg ul:where(.svelte-68hwg) {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.pp__benefits.svelte-68hwg li:where(.svelte-68hwg) {
  font-size: 13px;
  color: var(--textColor);
  line-height: 1.35;
}

.pp__benefits.svelte-68hwg li:where(.svelte-68hwg)::before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 900;
}

/* ── Actions ── */
.pp__actions.svelte-68hwg {
  display: grid;
  gap: 8px;
  justify-items: center;
}

/* ── Error ── */
.pp__errorIcon.svelte-68hwg {
  font-size: 48px;
  line-height: 1;
}

.pp__errorMsg.svelte-68hwg {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--textColor);
  line-height: 1.45;
  max-width: 380px;
  text-align: center;
}

.pp__errorActions.svelte-68hwg {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-top: 8px;
}

/* ── Footer ── */
.pp__footer.svelte-68hwg {
  font-size: 12px;
  color: var(--subtleText);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.pp__langBar.svelte-68hwg {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.pp__langPill.svelte-68hwg {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0px !important;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.pp__langPill.svelte-68hwg img:where(.svelte-68hwg) {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  object-fit: cover;
  pointer-events: none;
}

.pp__langPill.svelte-68hwg:hover {
  border-color: rgba(76, 227, 157, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.pp__langPill--active.svelte-68hwg {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 227, 157, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.pp__langPill--active.svelte-68hwg:hover {
  transform: none;
}.section__content.svelte-13dqfyf > li:where(.svelte-13dqfyf) {
  margin-bottom: 10px;
}

.section__selectorContent.svelte-13dqfyf {
  padding: 10px;
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 20px;
}
/* (unused) .section__selectorContent .multipleselect__content {
  margin-bottom: 0;
}*/

/* (unused) .list label {
  display: none;
}*/
/* (unused) .list input {
  background: var(--white);
}*/
/* (unused) .list.listHours label {
  display: block;
}*/
/* (unused) .list.listHours .row {
  flex-direction: column;
  margin-bottom: 20px;
}*/
/* (unused) .list.listHours input {
  margin-bottom: 10px;
}*/
/* (unused) .list.listActivity label {
  display: block;
}*/
/* (unused) .list.listActivity .row {
  flex-direction: column;
  margin-bottom: 20px;
}*/
/* (unused) .list.listActivity .row input {
  margin-bottom: 10px;
}*/.settings.svelte-1hc66hr {
  width: 100%;
  height: 100%;
  position: fixed;
  background: var(--backgroundMain);
}.frame__content.svelte-1rov0ac {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
  padding: 20px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 24px;
  margin-top: 35px;
}
/* (unused) .frame__content img {
  width: 100% !important;
}*/
/* (unused) .frame img {
  width: 100% !important;
}*/

/* (unused) img {
  width: 100% !important;
}*/.configurationPage.svelte-1n4wx8s {
  font-family: "Montserrat", sans-serif;
  padding: 1rem;
}

/* (unused) .configurationPage__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}*/

/* (unused) .configurationPage__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  letter-spacing: normal !important;
}*/

/* (unused) .configurationPage__close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #4ce39d;
}*/

.configurationPage__group.svelte-1n4wx8s {
  margin-bottom: 1.5rem;
  padding-right: 10;
}

.configurationPage__groupTitle.svelte-1n4wx8s {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #666;
}

.configurationPage__item.svelte-1n4wx8s {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.switch.svelte-1n4wx8s {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}

.switch.svelte-1n4wx8s input:where(.svelte-1n4wx8s) {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider.svelte-1n4wx8s {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 24px;
  transition: 0.4s;
}

.slider.svelte-1n4wx8s:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input.svelte-1n4wx8s:checked + .slider:where(.svelte-1n4wx8s) {
  background-color: #4ce39d;
}

input.svelte-1n4wx8s:checked + .slider:where(.svelte-1n4wx8s):before {
  transform: translateX(18px);
}

.configurationPage__select.svelte-1n4wx8s {
  padding: 0.4rem;
  font-size: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  color: #333;
}.st.svelte-1o7owub {
  min-height: 100vh;
  background: var(--backgroundMain);
  color: var(--textColor);
  padding: 24px 16px;
  display: grid;
  gap: 20px;
  align-content: start;
  font-family: "Montserrat", sans-serif;
}

.st__header.svelte-1o7owub {
  text-align: center;
}

.st__header.svelte-1o7owub h1:where(.svelte-1o7owub) {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
}

.st__header.svelte-1o7owub p:where(.svelte-1o7owub) {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--subtleText);
}

.st__controls.svelte-1o7owub {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.st__control.svelte-1o7owub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--textColor);
  white-space: nowrap;
}

.st__control.svelte-1o7owub span:where(.svelte-1o7owub) {
  font-weight: 700;
  min-width: 48px;
}

.st__control.svelte-1o7owub input[type=range]:where(.svelte-1o7owub) {
  width: 100px;
  accent-color: var(--primary);
}

.st__control.svelte-1o7owub strong:where(.svelte-1o7owub) {
  min-width: 36px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.st__toggle.svelte-1o7owub {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--backgroundMain);
  color: var(--textColor);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.st__toggle--active.svelte-1o7owub {
  background: var(--primary);
  border-color: var(--primary);
  color: #12121f;
}

.st__modeGroup.svelte-1o7owub {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.st__mode.svelte-1o7owub {
  padding: 8px 14px;
  border: none;
  border-right: 1px solid var(--border);
  background: var(--backgroundMain);
  color: var(--textColor);
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.st__mode.svelte-1o7owub:last-child {
  border-right: none;
}

.st__mode--active.svelte-1o7owub {
  background: var(--primary);
  color: #12121f;
}

.st__grid.svelte-1o7owub {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.st__cell.svelte-1o7owub {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.st__id.svelte-1o7owub {
  font-size: 11px;
  font-weight: 800;
  color: var(--subtleText);
  font-variant-numeric: tabular-nums;
}html,
body,
#app {
  background: var(--backgroundMain) !important;
  color: var(--textColor);
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

/* (unused) .splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background: var(--backgroundMain);
  animation: fadeIn 0.5s ease-out;
}*/

/* (unused) .splash__logo {
  width: 65px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
  animation: popIn 0.8s ease;
}*/

/* (unused) .splash__text h1 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  line-height: initial;
  letter-spacing: normal; /* o 0.05em *\/
  margin-bottom: 10px;
}*/

/* (unused) .splash__text p {
  font-size: 14px;
  color: var(--subtleText);
  opacity: 0.8;
  letter-spacing: normal; /* o 0.05em *\/
}*/

@keyframes svelte-2693rr-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes svelte-2693rr-popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}