* {
  font-family: "Roboto", sans-serif;
}
#form2,
#form3 {
  display: none;
}
main {
  margin-top: 100px;
  margin-bottom: 55px;
}

nav {
  background-color: #f8f8f8;
  border-bottom: 1px solid #e7e7e7;
  height: 100px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  text-align: center;
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f1af13;
  margin: 0.5rem;
}
nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem;
}
nav ul li {
  background-color: #f1af13;
  cursor: pointer;
}
label {
  display: block;
}
.flex-full {
  flex: 1 0 100%;
}
input {
  border-bottom: 1px solid black;
}
input[type="checkbox"],
input[type="radio"] {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
textarea {
  border: 1px solid black;
  border-radius: 0.5rem;
}
select {
  border: 1px solid gray;
  background: #f3f3f3;
  border-radius: 0.5rem;
}
input + label {
  color: gray;
}
.flex-2 {
  flex: 1 0 50%;
}

.button {
  background-color: #f1af13;
  cursor: pointer;
  padding: 0.5rem;
}
.bottom-page {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-top: 1px solid #e7e7e7;
  height: 50px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

#pop_up_choice_content {
  background-color: #f8f8f8;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  padding: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 1000;
}

#pop_up_choice_content_btn2,
#pop_up_choice_content_btn1 {
  border: 1px solid black;
  margin: 0.2rem;
}
div:has(> #pop_up_choice_content) {
  background-color: #f8f8f8;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 1000;
  text-align: center;
}

#mobilite option::before {
  content: "\2610";
  width: 1.3em;
  text-align: center;
  display: inline-block;
}
#mobilite option:disabled:before {
  content: "";
}
#mobilite option:disabled {
  text-align: center;
  font-weight: bold;
}
#mobilite option:checked::before {
  content: "\2611";
}

.flex-domain,
.flex-secteurs {
  width: 25rem;
}

.flex-start {
  justify-content: flex-start;
  align-items: center;
}

.grid-keywords {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 1rem;
}

.grid-keywords div:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.grid-keywords div:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.grid-keywords div:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.grid-keywords div:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.grid-keywords div:nth-child(5) {
  grid-column: 1/2;
  grid-row: 3/4;
}
.grid-keywords div:nth-child(6) {
  grid-column: 2/3;
  grid-row: 3/4;
}
.flex-col {
  flex-direction: column;
}
/* Styles de base */
* {
  font-family: "Roboto", sans-serif;
}
#form2, #form3 {
  display: none;
}
main {
  margin-top: 100px;
  margin-bottom: 55px;
}
nav ul.tabs {
  display: flex;
  justify-content: space-around;
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-bottom: 2px solid #e7e7e7;
}
nav ul.tabs li.tab {
  background-color: #f1af13;
  border-radius: 5px;
  cursor: pointer;
  padding: 0.5rem 1rem;
}
nav ul.tabs li.tab.active {
  background-color: #d35400;
  color: white;
  font-weight: bold;
}
nav ul.tabs li.tab:hover {
  background-color: #e67e22;
}
.form-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 2px solid #f1af13;
}
 select, textarea {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}
input:focus, select:focus, textarea:focus {
  border: 1px solid #f1af13;
  box-shadow: none;
}
