.progress-bar {
      background-color: #f0f0f0;
      padding: 10px 20px;
      font-weight: bold;
	  font-size: 30px;
      border-bottom: 2px solid #ccc;
    }

    .container {
      display: flex;
      /* height: calc(100vh - 48px); */
    }

    .form-section {
      width: 30%;
      padding: 30px;
      background-color: #fafafa;
      box-sizing: border-box;
    }
	#bloc1, #bloc2 {
		width: 100%;
		padding: 30px;
		background-color: #fafafa;
		box-sizing: border-box;
		height: calc(100vh - 220px);
	}
	#bloc2 { display: none; }

    .form-section h2 {
      margin-bottom: 20px;
    }

    label {
      display: block;
      margin-top: 15px;
      font-weight: bold;
    }

    input, select {
      width: 100%;
      padding: 8px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
    }

    #map {
      width: 70%;
      height: calc(100vh - 220px);
    }
	#infos {
      width: 30%;
      height: calc(100vh - 220px);
    }
	
	button {
  width: 100%;
  padding: 0.6rem 1.2rem;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #0056b3;
}

.parcelles-container {
  display: flex;
  gap: 5px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.bloc-parcelle {
  flex: 0 0 40%;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
  min-height: 120px;
  justify-content: center;
  align-items: center;
}

.ajouter-parcelle a {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #007bff;
}

.parcelle-existante h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.bloc-parcelle.active {
  background-color: #00990077;
}

.parcelle-existante p {
  margin: 5px 0;
}