/* Estilos básicos para el formulario */
  form#libro-reclamaciones-form {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
  }

  .libro-row {
    display: flex;
  }

  .row-input {
    max-width: 120px;
    width: 100%;
  }

  .row-input label {
    display: flex !important;
    align-items: center;
  }

  #rowParent {
    display: none;
  }

  .row-input label span {
    margin: 0 15px;
  }

  .libro-space-between {
    justify-content: space-between;
  }

  .terminos-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .terminos-row input {
    width: auto !important;
  }

  .submit-row {
    display: flex;
    justify-content: flex-start;
  }

  .submit-row input {
    width: 100%;
    max-width: 150px !important;
  }

  
  form#libro-reclamaciones-form .form-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  
  form#libro-reclamaciones-form .form-section .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  form#libro-reclamaciones-form h3 {
    margin-bottom: 0.5rem;
    width: 100%;
  }
  
  form#libro-reclamaciones-form label {
    display: block;
    margin: 0.5rem 0;
  }
  
  form#libro-reclamaciones-form input,
  form#libro-reclamaciones-form select,
  form#libro-reclamaciones-form textarea {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  form#libro-reclamaciones-form input:focus,
  form#libro-reclamaciones-form select:focus,
  form#libro-reclamaciones-form textarea:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  form#libro-reclamaciones-form input[type="submit"] {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    background-color: #007bff;
    border: 1px solid #007bff;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  form#libro-reclamaciones-form input[type="submit"]:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
.libro-section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.libro-form-logo {
  max-width: 250px !important;
}

.libro-button-disabled {
  opacity: 0.7;
  cursor: not-allowed !important;
}


.libro-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #007bff;
  border: 1px solid #007bff;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


  /* Estilos responsivos */
  @media (min-width: 768px) {
    form#libro-reclamaciones-form .form-section .form-row .form-column {
      width: calc(50% - 0.5rem);
    }

    .lb-col-lg-6 {
      width: 50%;
      padding: 0 15px;
    }

    .lb-col-lg-12 {
      width: 100%;
      padding: 0 15px;
    }
    
    
  }
  
  @media (max-width: 767.98px) {
    form#libro-reclamaciones-form .form-section .form-row .form-column {
      width: 100%;
    }
    .lb-col-sm-12 {
      width: 100%;
    }
  }
        


    /* MODAL  */

    #acceptButton.disabled {
      opacity: 0.7;
      cursor: not-allowed;
  }
  

    .wp-libro-reclamaciones-andina-modal {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 1; /* Sit on top */
      left: 0;
      top: 0;
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      overflow: auto; /* Enable scroll if needed */
      background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
      opacity: 0; /* Start invisible for animation */
      transition: opacity 0.5s ease; /* Smooth transition for opacity, 500ms */
  }

  .wp-libro-reclamaciones-andina-modal-content {
      background-color: #fefefe;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 0;
      border: 1px solid #888;
      width: 100%;
      max-width: 750px;
      max-height: 600px;
      overflow-y: auto;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Bootstrap-like shadow */
  }

  /* Other styles remain unchanged */

  .wp-libro-reclamaciones-andina-modal-header, .wp-libro-reclamaciones-andina-modal-footer {
    padding: 10px 30px 2px;
    background-color: #ffffff;
    color: white;
  }

  .wp-libro-reclamaciones-andina-close-button {
      color: white;
      float: right;
      font-size: 28px;
      font-weight: bold;
  }

  .wp-libro-reclamaciones-andina-close-button:hover,
  .wp-libro-reclamaciones-andina-close-button:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer;
  }

  .wp-libro-reclamaciones-andina-modal-footer {
    position: sticky;
    bottom: 0;
    background-color: #f1f1f1;
    padding: 10px;
    text-align: right;
  }


  .wp-libro-reclamaciones-andina-modal-body {padding: 2px 30px;}

.wplr-hidden{position:absolute;left:-9999px;top:-9999px;width:0;height:0;overflow:hidden;}

/* Generic modal content styling */
.wplr-modal-content {
    width: 100%;
    max-width: 750px;
    max-height: 600px;
    margin: 0 auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wplr-modal-content .wplr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9;
    display: none;
}

.wplr-modal-content .wplr-editor-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: none;
}

.wplr-editor-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wplr-editor-container .wplr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 9;
    display: none;
}

.wplr-editor-container .wplr-dynamic-editor,
.wplr-editor-container iframe {
    flex: 1 !important;
    height: 100% !important;
    min-height: 350px;
}

.wplr-editor-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 30px;
    height: 30px;
}


#TB_window {
  height: 650px !important;
}

#TB_ajaxContent {
  width: 95% !important;
  overflow: hidden !important;
}
