/* Set max-width for the entire page */
body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Style the header */
  h1 {
    text-align: center;
  }
  
  /* Style the container */
  .container {
    display: flex;
    flex-wrap: wrap;
  }
  
  /* Style the input section */
  .input-section {
    width: 600px;
  }
  
  .textarea-wrapper {
    margin-bottom: 10px;
  }
  
  textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
  }
  
  .buttons-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
  
  .buttons-section button {
    padding: 8px 12px;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
  }
  
  /* Style the content section */
  .content-section {
    width: 400px;
    margin-left: auto;
  }
  
  .keywords-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5;
    width: 600px;
    height: 200px;
  }
  
  .content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #f5f5f5;
    width: 400px;
    height: 200px;
  }
  
  .info-section {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
  }
  
  .info-section p {
    line-height: 1;
    margin: 0;
    flex: 1;
  }
  
  .info-section p span {
    font-weight: bold;
  }
  .info-section p:before {
    content: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4CAF50;
    margin-right: 10px;
  }
  
  /* Update the styles for the info-section spans */
  .info-section p span {
    font-size: 18px;
    color: #4CAF50;
    margin: 5px;
  }
  
  .keywords-section {
    margin-top: 20px;
    text-align: left;
  }
  
  .keywords-section h5 {
    margin: 0;
    text-align: center;
  }
  
  /* Style the blog section */
  .blog-section {
    margin-top: 40px;
  }
  
  .blog-section textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
  }
  
  .table-container {
    display: flex;
    justify-content: center;
  }
  
  table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
  }
  
  th, td {
    padding: 8px;
    border: 1px solid #ccc;
    text-align: center;
  }
  
  th {
    background-color: #f5f5f5;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #999;
  }
  
  .close-btn:hover {
    color: #555;
  }
  
  /* New section for floating to the right */
  .right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #000000;
    padding: 20px;
    background-color: #f5f5f5;
    width: 400px;
    height: 200px;
    margin-left: auto; /* Align to the right */
  }
  
  .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    height: 100%;
    font-family: 'Nunito', sans-serif;
  }
  
  .footer-link {
    color: #000000;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    padding: 10px;
  }
  
  .footer-link:hover {
    text-decoration: underline;
  }
  
  /* Responsive styles */
  @media (max-width: 1100px) {
    .container {
      justify-content: center;
    }
  
    .input-section, .content-section {
      width: 100%;
    }
  
    .buttons-section {
      justify-content: center;
    }
  
    .buttons-section button {
      flex-basis: 120px;
    }
    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 24px;
      background-color: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      color: #999;
    }
    
    .close-btn:hover {
      color: #555;
    }
  }
  