section#login-section {
    max-width: 500px;
    width: 100%;
    margin-top: 50px;
}

section.shadow {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    padding: 20px;
}

section .form-group {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 2fr;
    margin-top: 10px;
    place-items: center stretch;
}

.invalid-feedback strong{
    color: red;
}

.readonlypasswordhashwidget{
    border: none;
}

.form-control:has(.form-check){
    border: none;
}

.filtered{
    appearance: none;
    background-clip: padding-box;
    background-color: var(--bs-secondary-bg);
    border: 1px solid var(--bs-border-color);
    color: var(--bs-body-color);
    display: block;
    font-size: .825rem;
    font-weight: 400;
    line-height: 1.625;
    transition: border-color .15sease-in-out, box-shadow .15sease-in-out;
}

table.dataTable td.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable th.dt-type-numeric {
    text-align: left;
}

.current-file-box{
    margin: 1px;
    outline: 0.5px #dcdfe1 solid;
}
#login-body {
    justify-content: center;
    padding-bottom: 20em;
}


.dt-buttons, .btn-group, .flex-wrap{
    display: block !important;
}

.form-check-input{
    margin-left: 15px;
}

.empty-form-table{
    display: none;
}
/* Select2 stuff that may not get implemented
.select2-search__field{
    width: 100% !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search {
    padding: .25rem .7rem;
}*/

.select2-container--default .select2-search--dropdown .select2-search__field {
    width: 99% !important;
}


/*Filter Drop Down*/
*,*:after,*:before {
    box-sizing: border-box;
}
.wrapper-dropdown {
    position: relative;
    width: 200px;
    margin: -40px 0 auto auto;
    padding: 10px 15px;

    /* Styles */
    background: #fff;
    cursor: pointer;
    outline: none;
    z-index: 4;
}
.wrapper-dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: grey transparent;
}
.wrapper-dropdown .dropdown {
  /* Size & position */
    position: absolute;
    right: 0px;
    border-radius: 5px;

    /* Styles */
    background: white;
    transition: all 0.3s ease-out;
    list-style: none;

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.wrapper-dropdown .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

.wrapper-dropdown.active .dropdown .button-row {
    text-align: -webkit-center;
}

/* Hover state */

.wrapper-dropdown .dropdown li:hover a {
    color: grey;
    background-color: darkgrey;
}
.wrapper-dropdown.active:after {
    border-width: 0 6px 6px 6px;
}

.wrapper-dropdown.active .dropdown {
    opacity: 1;
    pointer-events: auto;
    width: 500px;
    border: 2px solid lightgray;
    padding: 5px;
    text-align: -webkit-center;
}

.wrapper-dropdown.active .dropdown .form-control{
    width: 150px;
    display: unset;
    margin: 10px auto 10px auto;
}

.dropdown .btn {
    box-shadow: 1px 1px 1px 1px grey
}