    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 800px;
      margin: 20px auto;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    h2 {
      text-align: center;
      color: #333;
    }
    .form-container {
      margin-bottom: 20px;
    }
    .input-group {
      margin-bottom: 15px;
    }
    label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }
    select, input[type="text"] {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }
    .captcha-section {
      display: none;
      margin-bottom: 15px;
    }
    .captcha-flex {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .captcha-image {
      max-width: 150px;
      height: auto;
    }
    .refresh-captcha {
      padding: 5px 10px;
      cursor: pointer;
      background: #007bff;
      color: #fff;
      border: none;
      border-radius: 4px;
    }
    .submit-btn, .search-again-btn {
      display: block;
      width: 100%;
      padding: 10px;
      background: #28a745;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
    }
    .submit-btn:hover, .search-again-btn:hover {
      background: #218838;
    }
    .refresh-captcha:hover {
      background: #0056b3;
    }
    .loading, .error {
      text-align: center;
      padding: 10px;
      margin-bottom: 15px;
    }
    .loading {
      color: #007bff;
    }
    .error {
      color: red;
    }
    .result-container {
      margin-top: 20px;
    }
    .table-container {
      overflow-x: auto;
    }
    /* Common Table Style for All Classes */
.tftable,
.tftable2,
.table_result,
.table_info,
.table,
.table-bordered,
.table-striped {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 15px 0;
    background-color: #fff;
    color: #333;
}

/* Table Headers */
.tftable th,
.tftable2 th,
.table_result th,
.table_info th,
.table th,
.table-bordered th,
.table-striped th {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

/* Table Data Cells */
.tftable td,
.tftable2 td,
.table_result td,
.table_info td,
.table td,
.table-bordered td,
.table-striped td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

/* Zebra striping for better readability */
.tftable tr:nth-child(even),
.tftable2 tr:nth-child(even),
.table_result tr:nth-child(even),
.table_info tr:nth-child(even),
.table tr:nth-child(even),
.table-bordered tr:nth-child(even),
.table-striped tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect */
.tftable tr:hover,
.tftable2 tr:hover,
.table_result tr:hover,
.table_info tr:hover,
.table tr:hover,
.table-bordered tr:hover,
.table-striped tr:hover {
    background-color: #e0f7fa;
}
    .cent-align {
      text-align: center;
    }
    .right-align {
      text-align: right;
    }

    .alert {
      padding: 10px;
      margin-bottom: 15px;
      border-radius: 4px;
    }
    .alert-info {
      background: #d1ecf1;
      color: #0c5460;
    }
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 10px;
      margin-bottom: 20px;
    }
    .info-item {
      padding: 10px;
      background: #f9f9f9;
      border-radius: 4px;
    }
    .info-label {
      font-weight: bold;
    }
    .divpadding {
      padding: 10px 0;
    }