#resultForm {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
#resultForm label {
    display: block;
    margin: 10px 0 5px;
}
#resultForm input, #resultForm select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}
#resultForm button {
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
#resultOutput {
    margin-top: 20px;
    font-size: 16px;
}


#resultOutput table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  #resultOutput th,
  #resultOutput td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
  }
  
  #resultOutput th {
    background-color: #f4f4f4;
    font-weight: bold;
  }
  
  #resultOutput tr:nth-child(even) {
    background-color: #fafafa;
  }
  
  #resultOutput tr:hover {
    background-color: #f1f1f1;
  }
  
