/* Works inside your split layout */

.servings-control{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  margin: 10px 0 14px;
}

#tcServings{
  width:110px;
  padding:8px 10px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  font-size:16px;
}

.tc-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}

.tc-table th,
.tc-table td{
  border-bottom:1px solid #e5e7eb;
  padding:10px 12px;
  text-align:left;
  vertical-align:top;
}

.tc-table th{
  background:#f8fafc;
  font-weight:700;
}

.tc-table tr:last-child td{ border-bottom:none; }

.empty{
  margin:10px 0;
  padding:12px;
  background:#fff;
  border:1px dashed #cbd5e1;
  border-radius:12px;
  text-align:center;
  color:#64748b;
}
