* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: url('https://media.licdn.com/dms/image/v2/D563DAQFjmNvXoaVIFA/image-scale_191_1128/image-scale_191_1128/0/1689820255053/pt_moelti_pertanian_indonesia_m_tani_group_cover?e=2147483647&v=beta&t=ulUe4nY5-zcYCEFih_IyQNpH5VySs9drnPK8rw6iaq8');
    padding: 20px;
    color: #333;
    height: 100vh;
    overflow-y: auto;
    touch-action: auto;
    padding-bottom: 100px;
  }
  
  html, body {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    touch-action: auto;
  }
  .fixed-element {
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: hidden;
  }

  h1 {
    text-align: center;
    margin-bottom: 20px;
  }

  form {
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .form-col {
    flex: 1 1 48%;
  }

  @media (max-width: 600px) {
    .form-col {
      flex: 1 1 100%;
    }
  }

  label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
  }

  input[type="text"],
  input[type="tel"],
  input[type="date"],
  input[type="number"],
  select,
  textarea,
  input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-sizing: border-box;
    border: 2px solid #999;;
    font-size: 14px;
  }

  input[type="text"]:focus,
  select:focus,
  textarea:focus {
    border-color: #fbc02d;    /* Warna kuning saat fokus */
    outline: none;
  }

  input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    box-sizing: border-box;
  }

  textarea {
    height: 80px;
    resize: vertical;
  }

  .checkbox-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .checkbox-group label {
    font-weight: normal;
  }

  .po-section {
    margin-bottom: 15px;
  }

  .po-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .po-item {
    flex: 1 1 45%;
  }
  
  .po-table-wrapper {
    overflow-x: auto;
    margin-top: 10px;
  }
  

  .po-table {
    border-collapse: collapse;
    width: max-content;
    min-width: 100%;
  }

  .po-table th, .po-table td {
    border: 1px solid #ccc;
    padding: 6px 8px;
    text-align: center;
    font-size: 14px;
  }

  .po-table th:first-child,
  .po-table td:first-child {
    text-align: left;
    white-space: nowrap;
  }

  /* Responsive for smaller screens */
  @media (max-width: 600px) {
    .po-item {
      flex: 1 1 100%;
    }

    form {
      padding: 10px;
    }

    po-table th, .po-table td {
      font-size: 15px;
      padding: 4px;
    }
  }
  
    /* Styling untuk tombol Kirim */
    button[type="submit"],
    input[type="submit"] {
    width: 100%;
    background-color: #FFC107;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }

    /* Hover effect */
    button[type="submit"]:hover,
    input[type="submit"]:hover {
    background-color: #FFA000;
    }

    /* Responsive untuk mobile */
    @media (max-width: 480px) {
    .checkbox-group {
        flex-direction: column;
    }

    button[type="submit"],
    input[type="submit"] {
        font-size: 14px;
        padding: 10px;
    }
    }

