.tableLink, .tableLink:hover{
    text-decoration: none;
    font-weight: 700;
    color:inherit;
}

#imageGrid, #hub-image-container, #article-image-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns as needed */
    gap: 10px;
    margin-bottom:30px;
}

.imageBox {
    position: relative;
}

.imageBox img {
    width: 100%;
    height: auto;
}

.radioBtn {
    position: absolute;
    top: 5px;
    right: 5px;
}

button.btngrig{
    width:fit-content!important;
    margin-top:30px;
}

a.btnGrid{
    width:fit-content!important;
}

.d-flex{
    display: flex!important;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}


/* switch button */

.switchBox{
    background: #fefefe;
    border: 1px solid #ccc;
    width: fit-content;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 24px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(36px);
    -ms-transform: translateX(36px);
    transform: translateX(36px);
}

/* selectpicker */
.inner.show{
    max-height:150px!important;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
    outline: none;
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #adb5bd;
}

#faqForm .dropdown.bootstrap-select.form-select{
    border:1px solid #ccc;
}

tfoot th{
    white-space: wrap;
}

#map{
    width: 100%;
    height:400px;
}

li.select2-selection__choice{
    background:#2196F3!important;
    color:#fff !important;
}

span.select2-selection__choice__remove{
    color:#fff!important;
}

.modal-dialog {
    max-width: 90%;
}

.modal{
    overflow-y: scroll;
}