/* toggle_config.html */
.section-box {
    border: 2px solid #dee2e6; /* Light gray border */
    border-radius: 0.75rem;    /* Rounded corners */
    padding: 0.65rem;             /* Spacing inside box */
    background-color: #f8f9fa; /* Optional: light background */
}
.toggle-container {
    display: inline-block;
    text-align: center;
    margin: 10px;
}
.toggle-label {
    display: block;
    margin-bottom: 5px;
}
.radio-container {
    display: block;
    text-align: left;
    margin: 10px;
}
.form-check-input[type="radio"] {
    width: 1.2em;
    height: 1.2em;
    border: 2px solid #aaaaaa;
    background-color: white;
    cursor: pointer;
    box-shadow: none;
    appearance: none;
}
.form-check-input[type="radio"]:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.apply-button-container {
    display: flex;
    justify-content: flex-start; 
    width: 100%;
}
.apply-button-container .btn {
    margin-left: 10px;
}
.card-container {
    margin-top: 75px;
    margin-left: 10px;
    width: 50%;
}
.card-label {
    display: inline-block;
    width: 150px; /* fixed width to align */
    text-align: left; /* align label text to right */
    margin-right: 7px; /* space between label and value */
}
.message-box{
    margin-top: 50px;
    margin-left: 10px;
    width: 50%; 
}