/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.form-tabset {
  margin-bottom: 0.5rem;
}
.form-tabset h4 {
  margin: 0;
}

/* Style the tabs */
.form-tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
}

.form-tabs li {
  margin-right: 1rem; /* Space between tabs */
}

.form-tabs a {
  display: inline-block;
  text-decoration: none;
  padding: 5px 0;
  color: #666;
}

/* Hover effect for the tabs */
.form-tabs a:hover {
  color: #009EDB;
}

/* Style for the active tab */
.form-tabs a.active {
  color: #004A7C;
  background-color: white;
  border-bottom: 1px solid #004A7C;
}

/* Style for the form content */
.form-tab {
  display: none; /* Hide all form contents by default */
}

.form-tab.active {
  display: block; /* Show the active form content */
}
