/* {
  background: rgb(0 100 0 / 0.1) !important;
}*/

body {
    background-color: white;
}

btn-tooltip {
    --bs-btn-padding-y: .25rem; 
    --bs-btn-padding-x: .5rem; 
    --bs-btn-font-size: .75rem;
}

.colored, .btn-colored {
    padding: 4px 8px;
    margin-bottom: 2px;
    background-color: lightgrey;
    color: black;
    border-radius: 20px;
    border-style: solid;
    border-width: 2px;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 80%;
    transition: background-color 200ms, border 200ms;
}

.btn-colored-choice input[type="checkbox"]:not(:checked) + .btn-colored{
    background-color: hsl(0, 0%, 80%);
    border-color: white;
    color: white
}

.btn-colored-choice input[type="checkbox"]:not(:checked) + .btn-colored:hover{
    background-color: hsl(0, 0%, 60%);
}

.btn-colored-choice input[type="checkbox"]:not(:checked) + .btn-colored:active {
    background-color: hsl(0, 0%, 40%);
}

.custom-checkbox .form-check {
    padding-left: 0;
    display: inline-block;
}

.btn-colored-choice input[type="checkbox"]:checked + .btn-colored-choice label {
    font-weight: bold;
    border-radius: 20px;
}

.btn-colored-choice label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding: 5px 10px;
    margin-right: 10px;
    vertical-align: middle;
}

.case-dashboard {
    margin: 10px;
    padding: 10px;
    background-color: hsl(208, 100%, 97%);
    border-style: solid;
    border-width: 1px;
    border-color: hsl(208, 100%, 70%);
    border-radius: 20px;
}

.msg-non-connecte {
    background-color: rgba(255, 0, 0, 0.1);
    border-style: solid;
    border-color: rgba(255, 0, 0, 0.4);
    border-width: 2px;
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
}

@media (max-width: 1400px) {
    .btn-deconnect {
        font-size: small;
    }
}