    body {
      font-family: Arial, sans-serif;
      background-color: #f8f9fa;
      margin: 20px;
      color: #333;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    h1,
    h3 {
      color: #00796b;
    }

    form {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      /* max-width: 00px; */
     width:50%;
      margin-bottom: 30px;
    }

    label {
      display: block;
      margin: 8px 0 4px;
      font-weight: bold;
    }

    input[type="text"],
    input[type="email"],
    select,
    input[type="search"] {
      width: 100%;
      padding: 8px 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    input[type="search"] {
      width: 50%;
      padding: 8px 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    input[type="checkbox"] {
      margin-right: 8px;
    }

    input[type="submit"],
    button {
      background-color: #00796b;
      color: white;
      padding: 10px 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    input[type="submit"]:hover,
    button:hover {
      background-color: #004d40;
    }

    .table {
      overflow-x: auto;
      max-width: 100%;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      background-color: #fff;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    }

    th,
    td {
      padding: 12px;
      text-align: center;
      border: 1px solid #ddd;
    }

    th {
      background-color: #009688;
      color: white;
    }

    td i {
      cursor: pointer;
      color: #00796b;
      transition: color 0.2s;
    }

    td i:hover {
      color: #e53935;
    }

    tfoot {
      background-color: #f1f1f1;
      font-weight: bold;
      text-align: center;
    }

    #search_result {
      margin-top: 10px;
      color: #00796b;
      font-weight: bold;
    }

    .required {
      color: red;
    }
    .check{
        display: flex;
    }
    @media (max-width: 750px) {
       form {

     width:85%;
    }
      
    }
