/* Bold Step 4 columns: Cost/Acre, Profit/Acre, Target (but not Yield) */
.step4 table tbody td:nth-child(2),
.step4 table tbody td:nth-child(3),
.step4 table tbody td:nth-child(4),
.step4 table tbody td:nth-child(5) {
    font-weight: bold;
}

/* Scoped styles so nothing gets overridden */
.eval,
.eval * {
  box-sizing: border-box;
}
.eval {
  font-family: Arial, sans-serif;
  margin: 0 auto;
  background: #fff;
  color: #222;
}
.techno-dashboard-eval-list-thead
{
    background-color: #333;
    color: white;
}
.techno-dashboard-eval-list td
{
    vertical-align: middle;
}
#techno-custom-market-evaluation-name {
  margin: 0 auto;
  background: #f2f2f2;
  padding: 20px;
}
#techno-custom-market-evaluation-name label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.eval h1 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.eval .step {
  margin: 16px 0;
  border: 1px solid #d6d6d6;
}
.eval .step h2 {
  margin: 0;
  padding: 10px;
  background: #f2f2f2;
  font-weight: 700;
}
.eval table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.eval th,
.eval td {
  border: 1px solid #d6d6d6;
  padding: 6px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eval th {
  background: #fafafa;
  text-align: center;
}
.eval td.txt {
  text-align: left;
}
.eval td.num,
.eval th.num {
  text-align: right;
}
.eval input {
  width: 100%;
  height: 32px;
  padding: 4px 6px;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  font-size: 0.95rem;
  background: #fff;
  color: #222;
}
.eval input[type="number"] {
    text-align: right;
    font-size: 1rem;
    line-height: 1.5;
}
.eval input[disabled] {
  border: none !important;
  background: transparent !important;
}
.eval .cols-4 col.col1 {
  width: 40%;
}
.eval .cols-4 col.colN {
  width: 20%;
}
.eval .cols-5 col.col1 {
  width: 28%;
}
.eval .cols-5 col.colN {
  width: 18%;
}
.eval .cols-2 col.colL {
  width: 40%;
}
.eval .cols-2 col.colR {
  width: 60%;
}
.eval .val {
    display: inline-block;
    min-width: 0;
    font-family: "Arial", Sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}
.eval .cta {
  display: inline-block;
  padding: 8px 14px;
  background: #1976d2;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid #155a9c;
  font-weight: 600;
}
.eval .cta:hover {
  background: #155a9c;
}
.techno-actions-btn {
    text-align: center;
    display: flex;
    gap: 5px;
    justify-content: center;
}
.techno-dashboard-btn {
    background-color: #088634 !important;
    font-family: "Caveat", Sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #fff !important;
    border-radius: 40px !important;
    padding: 8px 25px !important;
    text-decoration: none !important;
    display: inline-block;
    border: none !important;
}
@media screen and (max-width: 572px){
    .techno-actions-btn {
        text-align: center;
        display: flex;
        gap: 5px;
        justify-content: center;
        flex-direction: column;
    } 
}