/* verkeersboete-calculator.css */
.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 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;
}

.bezwaar-calculator-container label {
    display: block;
    margin-top: 10px;
    margin-right: 15px;
}

.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;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.bezwaar-calculator-container button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.bezwaar-calculator-container button:active {
    background-color: #003f7f;
    transform: translateY(0);
}

.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;
    height: 17px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    transform: translateX(13px);
}

.slider.round {
    border-radius: 17px;
}

.slider.round:before {
    border-radius: 50%;
}
