/* overall container so the form doesn't go edge-to-edge */
#add_project {
  max-width: 600px;
}

/* two columns on the same line */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* 2 equal columns */
  gap: 16px;                       /* space between columns */
  margin-bottom: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

/* control the width of inputs in those rows */
.form-field input {
  width: 100%;        /* full width of its column */
  box-sizing: border-box;
}

.row-titles {
    color: blue
}

label {
    color: white;
    cursor: pointer;
    margin-right: 16px;
}

input[type='radio'] {
  margin-right: 4px;
}

.required_star {
  color: red;
}

.tab-header {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 8px;
}

.tab-button {
  padding: 6px 12px;
  border: none;
  background: #f3f3f3;
  cursor: pointer;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-right: 4px;
}

.tab-button.active {
  background: #ffffff;
  border: 1px solid #ccc;
  border-bottom: 1px solid #ffffff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
