.delete-button {
    color: red;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 5px;
}

.menu-button {
    background: var(--bs-primary);
    border: none;
    cursor: pointer;
    color: var(--bs-warning);
    text-decoration: underline;
}

.statementset-button {
    font-size: 1em;
    margin-top: 10px;
    margin-bottom: 5px;
}

.toggle-button {
    position: absolute;
    top: 10px;
    left: 305px;
    background-color: grey;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 1000;
    transition: left 0.3s ease;
}

.toggle-button.moved {
    left: 10px;
}

.toggle-fieldset-button {
    color: black;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
}


.button-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.add-button {
    background-color:  var(--bs-warning);
    color:  var(--bs-secondary);
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    /* font-size: 16px; */
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 10px;
    flex: 1;
    margin-right: 10px;
}

.add-button:last-child {
    margin-right: 0;
}

.green-checkmark-custom i {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
  }
.form-check-input:not(:checked) {
    background-color: #ebebeb; /* Change to a darker shade as desired */
    border-color: #888;
}
