

.fields-table th {
  background: #f9f9f9;
  text-align: start;
  padding: 10px;
  border-bottom: 2px solid #ddd;
  font-weight: 600;
  color: #333;
}

.fields-table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}



.fields-table input,

.fields-table select ,.fields-table textarea {
 
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fafafa;
  font-size: 13px;
  transition: all 0.2s ease;
      line-height: 2;
       width: 100%;
          
}

.fields-table select{
   width: 100%;
   -webkit-appearance: auto;
    cursor: pointer;
}


.fields-table input[type="checkbox"],.fields-table input[type="radio"]{

    width: 1rem;
}





.fields-table input:not([type="checkbox"]):not([type="radio"]):focus,
.fields-table select:focus {
  border-color: #2271b1;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 1px #2271b1;
}


button,
input[type="submit"] {
  background: #2271b1; 
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover,
input[type="submit"]:hover {
  background: #135e96;
}



