/* *** General *** */
.simulator-container {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.simulator-container label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #003366;
}
.simulator-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.simulator-container button {
    width: 100%;
    padding: 12px 24px;
    background-color: #ff7f00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.simulator-container button:hover {
    background-color: #e67000;
}
.simulator-container .modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: -1000;
}
.simulator-container .modal.show {
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
}
.simulator-container .modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.simulator-container .modal-content {
    padding: 30px;
    max-height: calc(100vh - 10%);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background-color: #fff;
    border-radius: 10px;
    scroll-behavior: smooth;
    overflow-y: scroll;
    overscroll-behavior: contain;
}

.simulator-container #bulletin-form{
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: -1000;
}
.simulator-container #bulletin-form.show{
    position: relative;
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
}
.simulator-container #bulletin-form input[type=checkbox]{
    --active-inner: green;
    margin-top: 0;
}
