.panel {
  display: flex;
  align-items: center;
  gap: 8px; /* space between input and buttons */
}

.panel form {
  flex-grow: 1; /* let input fill available width */
}

.panel .text {
  width: 100%; /* fill form width */
  box-sizing: border-box; /* include padding in width */
}

.cformctrl {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Optional: style buttons to look consistent */
.cformctrl button {
  background: #333;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  color: white;
  border-radius: 4px;
}
