/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0; /* no padding on body */
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  display: flex;
  flex-direction: column;
}


/* Important Box */
.important-box {
  background: #e6f9f7;        /* very light teal background */
  border: 1px solid #2dd4bf;  /* teal border */
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 14px;
  color: #065f46;             /* dark teal text */
}
.main-container {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 20px; /* ✅ keep padding here */
}


/* Left column */
.left-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*Report Section*/
.report-section {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.report-box {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 20px;
  max-width: 650px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.report-box h2 {
  font-size: 18px;
  color: #0f766e;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.report-box p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
}
.report-list {
  display: flex;
  justify-content: flex-start;
  gap: 60px;  /* Increase or decrease for more/less space */
}

.report-list ul {
  
  list-style-type: disc;
  padding-left: 20px;   /* space between bullet and text */
  margin: 0;
  font-size: 14px;
  color: #111827;
  line-height: 1.9;     /* spacing between list items */
}

/*Investigation Section*/
.investigation-section {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.investigation-box {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 20px;
  max-width: 650px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.investigation-box h2 {
  font-size: 18px;
  color: #0f766e;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 12px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0f766e;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}
.steps strong {
  display: block;
  font-size: 15px;
  color: #111827;
  margin-bottom: 3px;
}
.steps p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
/*Good Faith Reporting*/
.goodfaith-box {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 20px;
  max-width: 650px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}
.goodfaith-box h2 {
  font-size: 16px;
  color: #0f766e;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.goodfaith-box p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
/*Submit Form*/


    .report-container {
      flex: 1;
      max-width: 500px;
      margin: 0 auto;
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .report-container h2 {
      font-size: 23.4px;
      margin-bottom: 15px;
      color: #0f766e;
      text-align: center;
    }

    .form-group {
      margin-bottom: 18px;
    }

    label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
      color: #374151;
    }

    select,
    input[type="text"],
    input[type="date"],
    input[type="email"],
    input[type="phone"],
    textarea {
      width: 100%;
      padding: 12px;
      font-size: 14px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      outline: none;
      transition: border 0.3s;
      background: #f9fafb;
    }

    select:focus,
    input:focus,
    textarea:focus {
      border-color: #0f766e;
      background: #fff;
    }

    textarea {
      resize: vertical;
      min-height: 90px;
    }

    .form-inline {
      display: flex;
      gap: 15px;
    }

    .form-inline .form-group {
      flex: 1;
    }

    .checkbox-group {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #374151;
    }

    .note-box {
      font-size: 12px;
      padding: 12px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      background: #f9fafb;
      margin-bottom: 20px;
      color: #555;
    }

    button {
      width: 100%;
      padding: 14px;
      font-size: 15px;
      font-weight: 600;
      background: #0f766E;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background: #000;
    }
/* Fix phone + email field consistency */
#emailGroup input,
#phoneGroup input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

#emailGroup input:focus,
#phoneGroup input:focus {
  border-color: #0f766e;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Custom Dropdown */
.custom-dropdown {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
}

.custom-dropdown .selected {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-dropdown .options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 180px;
  overflow-y: auto;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
  display: none;
}

.custom-dropdown .options li {
  padding: 10px;
  font-size: 14px;
  color: #374151;
  list-style: none;
}

.custom-dropdown .options li:hover {
  background: #0f766e;
  color: #fff;
}

.custom-dropdown.open .options {
  display: block;
}

.custom-dropdown .arrow {
  transition: transform 0.3s;
}

.custom-dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Hide native select */
.custom-dropdown select {
  display: none;
}

/* RESPONSIVE MEDIA QUERIES */
/* ================================================= */

/* Tablet Devices (max-width: 1024px) */
@media (max-width: 1024px) {

  .main-container {
    flex-direction: column; /* Stack left and right columns */
    gap: 20px;
    padding: 15px;
  }

  .left-column {
    width: 100%;
    gap: 15px;
  }

  .report-list {
    flex-direction: column; /* Stack bullet lists vertically */
    gap: 25px;
  }

  .report-list ul {
    padding-left: 15px;
  }

  .report-box,
  .investigation-box,
  .goodfaith-box {
    max-width: 100%;
    padding: 15px;
  }

  .steps li {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .steps strong {
    font-size: 14px;
  }

  .report-container {
    max-width: 100%;
    padding: 20px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {

  .main-container {
    padding: 10px;
    gap: 15px;
  }

  .left-column {
    gap: 10px;
  }

  .report-section,
  .investigation-section {
    flex-direction: column; /* Stack content vertically */
  }

  .report-box,
  .investigation-box,
  .goodfaith-box {
    max-width: 100%;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .report-list {
    gap: 15px;
  }

  .report-list ul {
    font-size: 13px;
    line-height: 1.6;
    padding-left: 15px;
  }

  .steps li {
    gap: 10px;
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .steps strong {
    font-size: 13px;
  }

  .steps p {
    font-size: 13px;
  }

  .report-container {
    padding: 15px;
  }

  .report-container h2 {
    font-size: 20px;
  }

  .form-group label {
    font-size: 13px;
  }

  select,
  input[type="text"],
  input[type="date"],
  input[type="email"],
  input[type="phone"],
  textarea {
    padding: 10px;
    font-size: 13px;
  }

  button {
    padding: 12px;
    font-size: 14px;
  }

  .note-box {
    font-size: 11px;
    padding: 10px;
  }

  .checkbox-group {
    font-size: 13px;
  }
}

/* Extra Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {

  .main-container {
    padding: 8px;
  }

  .report-box,
  .investigation-box,
  .goodfaith-box,
  .report-container {
    padding: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  }

  .report-container h2 {
    font-size: 18px;
  }

  .form-group label,
  .steps strong {
    font-size: 12px;
  }

  select,
  input,
  textarea {
    padding: 8px;
    font-size: 12px;
  }

  button {
    padding: 10px;
    font-size: 13px;
  }

  .note-box {
    font-size: 10px;
    padding: 8px;
  }

  .step-number {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .steps p {
    font-size: 12px;
  }

  .report-list {
    gap: 10px;
  }
}







