 * {
        box-sizing: border-box;
      }

      body {
        font-family: "muli", sans-serif !important;
        font-weight: 300;
        font-style: normal;
        margin: 0;
        padding-top: 100px;
        background-color: #fff;
        color: #000;
      }

      p {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
      }

      .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 15px;
      }

      nav {
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #00004d;
        padding: 20px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
      }

      nav img {
        height: 20px;
      }

      nav .back-button {
        position: absolute;
        left: 20px;
        display: inline-flex;
        align-items: center;
        padding: 5px;
        /*background: #008de4;*/
        border: 2px solid #fff;
        color: white;
        text-decoration: none;
        border-radius: 999px;
        font-size: 14px;
        transition: all 0.3s ease;
      }

      nav .back-button:hover {
        /*background: #006bb3;*/
        background: #008de4;
        border: 2px solid #008de4;
      }

      /*nav .back-button::before {*/
      /*  content: "←";*/
      /*  margin-right: 8px;*/
      /*  font-size: 16px;*/
      /*}*/

      h2 {
        text-align: center;
        color: #000;
        font-size: 60px;
        margin: 0 0 15px;
        font-weight: 400;
      }

      @media (max-width: 600px) {
        h2 {
          font-size: 30px;
        }
      }

      .form-wrapper {
        background: #f4f4f7;
        padding: 30px;
        border-radius: 30px;
        color: #000;
        margin-bottom: 60px;
      }

      label {
        font-weight: bold;
        display: block;
        margin-bottom: 6px;
      }

      input,
      select,
      textarea {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ccc;
        border-radius: 20px;
        background: transparent;
        font-family: inherit;
        color: #000;
      }
      
      .form-wrapper input,
      .form-wrapper select,
      .form-wrapper textarea {
        margin-bottom: 20px;
      }

      .checkbox-group {
        margin-bottom: 20px;
      }

      .checkbox-label {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        cursor: pointer;
        font-weight: normal;
      }

      .checkbox-label input[type="checkbox"] {
        width: auto;
        margin-right: 10px;
        margin-bottom: 0;
      }

      .checkbox-label:last-child {
        margin-bottom: 0;
      }

      input:focus,
      textarea:focus,
      select:focus {
        outline: 2px solid #008de4;
      }

      button {
        padding: 8px 16px;
        background: #008de4;
        color: white;
        border: none;
        border-radius: 999px;
        font-size: 16px;
        cursor: pointer;
        font-family: "muli", sans-serif;
      }

      .error {
        color: red;
        font-size: 14px;
        margin-top: -15px;
        margin-bottom: 10px;
      }
      textarea{
          height: 120px;
      }

      table {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0 !important;
        /* background-color: #fff; */
        color: #000;
        overflow: hidden;
      }

      .table-container {
        border: 1px solid #ccc;
        border-radius: 15px;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 60px;
      }

      th,
      td {
        padding: 12px;
        border: 1px solid #ccc;
        text-align: left;
      }

      table tr:first-child th {
        border-top: 0;
      }
      table tr:last-child td {
        border-bottom: 0;
      }
      table tr td:first-child,
      table tr th:first-child {
        border-left: 0;
      }
      table tr td:last-child,
      table tr th:last-child {
        border-right: 0;
      }

      .empty-msg {
        text-align: center;
        padding: 20px;
        color: #888;
      }
      .empty-msg td{
        text-align: center;
      }



