/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

fieldset {
  display: inline-block;
  vertical-align: top; /* Align to the top to prevent misalignment */
  margin-right: 10px; /* Add some spacing between fieldsets */
}

.tab-container {
  display: flex;
  border-bottom: 2px solid #ddd;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: #f9f9f9;
  border-right: 1px solid #ddd;
  transition: background 0.3s;
}

.tab:hover {
  background: #e0e0e0;
}

.tab.active {
  background: #ffffff;
  font-weight: bold;
  border-bottom: 2px solid #007bff;
}

.tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #ddd;
  border-top: none;
}

.tab-content.active {
  display: block;
}
