body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #666;
}

input[type="text"],
input[type="number"] {
    width: calc(100% - 20px);
    /* Adjust width to accommodate padding */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}



.requirement-inputs {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.requirement-inputs:last-child {
    margin-bottom: 0;
}

.requirement-inputs input[type="text"] {
    width: calc(100% - 100px);
    /* Adjust width to accommodate buttons */
    border-radius: 4px 0 0 4px;
}

.control-buttons {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.control-buttons button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 5px;
}

.control-buttons button:hover {
    background-color: #45a049;
}

.remove-btn {
    background-color: #f44336;
}

.remove-btn:hover {
    background-color: #cc0000;
}

label[for="gpt3"],
label[for="gpt4"] {
    display: inline-block;
    margin-right: 10px;
    /* Adjust spacing between labels */
}

input[type="submit"] {
    padding: 12px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.error {
    color: #f44336;
    font-size: 0.9em;
    margin-top: 5px;
}


.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: none;
    /* Initially hidden */
    margin: 10px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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



/** iframe Container cSS*/

.iframe-container {
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: space-between;
}

  .left-iframe-container {
    width: auto;
    max-width: 70%;
  }
  .right-iframe-container {
    width: auto;
    max-width: 30%;
  }

   #meta-info {
    display: none;
    background-color: #fff;
    padding: 10px;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }

 

  @media (max-width: 768px) {
    .iframe-container {
      flex-direction: column;
    }
    .left-iframe-container, .right-iframe-container {
      max-width: 100%;
    }
  }

/** FAQ CSS*/

.faq-container {
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: space-between;
}

  .title-faq-container {
    width: auto;
    max-width: 50%;
  }
  .blog-faq-container {
    width: auto;
    max-width: 50%;
  }

   #title-faq-info, #blog-faq-info {
    display: none;
    background-color: #fff;
    padding: 10px;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }

 

  @media (max-width: 768px) {
    .faq-container {
      flex-direction: column;
    }
    .title-faq-container, .blog-faq-container {
      max-width: 100%;
    }
  }


