.container-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.bezwaar-calculator-container {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    width: 100%;
    max-width: 500px;
    margin: 20px;
}

.bezwaar-calculator-container h1 {
    margin-top: 0;
    text-align: center;
}

.bezwaar-calculator-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centered-instruction {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px; /* Vergroot de afstand tussen de tekst en toggles */
}

.bezwaar-calculator-container label {
    display: block;
    margin-top: 10px;
    margin-right: 15px; /* Optionele extra ruimte tussen label en toggle */
}

.form-group input {
    flex: 1;
    margin-right: 10px;
}

.bezwaar-calculator-container button {
    padding: 10px 15px;
    background-color: #007BFF !important;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    color: #f5f5f5;
    font-weight: 700;
}

.bezwaar-calculator-container button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bezwaar-calculator-container button:active {
    background-color: #003f7f;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bezwaar-calculator-container #result-bezwaartermijn, 
.bezwaar-calculator-container #result-beslistermijn {
    margin-top: 5px;
    text-align: center;
    font-weight: bold;
}

/* Toggle styles */
.switch {
  position: relative;
  display: inline-block;
  width: 30px; /* Verkleind naar de helft */
  height: 17px; /* Verkleind naar de helft */
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px; /* Verkleind naar de helft */
  width: 13px;  /* Verkleind naar de helft */
  left: 2px;    /* Aangepast voor de kleinere knop */
  bottom: 2px;  /* Aangepast voor de kleinere knop */
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px); /* Aangepast voor de kleinere knop */
  -ms-transform: translateX(13px); /* Aangepast voor de kleinere knop */
  transform: translateX(13px); /* Aangepast voor de kleinere knop */
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px; /* Verkleind naar de helft */
}

.slider.round:before {
  border-radius: 50%;
}