.elementor-47571 .elementor-element.elementor-element-5fdf517{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-47571 .elementor-element.elementor-element-5fdf517{--width:100%;}}@media(min-width:768px){.elementor-47571 .elementor-element.elementor-element-5fdf517{--width:100%;}}@media(max-width:1024px) and (min-width:768px){.elementor-47571 .elementor-element.elementor-element-5fdf517{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-e2660db */.container {
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }

  .settings, .preview {
    flex: 1 1 100%;
  }

  @media (min-width: 768px) {
    .settings, .preview {
      flex: 1 1 45%;
    }
  }

  h2 {
    margin-bottom: 20px;
  }

  select, input[type="text"], input[type="url"], input[type="email"], input[type="tel"], input[type="datetime-local"], textarea {
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
  }

  button {
    background-color: #1A9190;
    color: white;
    cursor: pointer;
    border: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-size: 1em;
    transition: background-color 0.3s;
  }

  button:hover {
    background-color: #336b6a;
  }

  .color-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }

  .color-row input {
    flex: 1;
  }

  .qr-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  #qr-code {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
    border-radius: 20px;
    overflow: hidden;
  }

  #qr-code canvas {
    max-width: 100%;
    height: auto !important;
  }

  label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 500;
  }

  .custom-file {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }

  .custom-file input[type="file"] {
    display: none;
  }

  .custom-file label {
    padding: 10px 15px;
    background-color: #1A9190;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    margin: 0;
  }

  .custom-file label:hover {
    background-color: #336b6a;
  }

  .custom-file span {
    font-size: 0.9em;
    color: #555;
    word-break: break-word;
  }

  .input-big {
    padding: 16px;
    font-size: 1.1em;
    border-radius: 12px;
    border: 1px solid #ccc;
    margin-bottom: 16px;
    width: 95%;
    background: #f9f9f9;
  }

  /* Media queries para pantallas pequeñas */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      padding: 20px;
      margin: 20px 10px;
      gap: 20px;
    }

    .settings {
      order: 1;
    }

    .preview {
      order: 2;
    }

    .qr-box {
      width: 100%;
      padding: 20px 10px;
    }

    button {
      padding: 14px;
    }

    .input-big {
      width: 100%;
    }
  }/* End custom CSS */