.delete-file-input {
    font-size: 15px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}
#user-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
}
.already_in {
    position: absolute;
    font-size: 10px;
    bottom: 0;
    right: 0;
    color: red;
    padding: 5px;
}
.search__for__another {
    border: 1px solid #000;
    height: 30px;
    border-radius: 4px;
    padding: 4px;
}
.user__card {
    width: 390px;
    height: 247px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #000;
    border-radius: 18px;
    background-color: #fff;
    background-size: 100% 100%;
    position: relative;
    padding: 10px 15px;
}
.user__card .user__image {
    width: 101px;
    height: 119px;
    object-fit: cover;
    position: absolute;
    right: 23px;
    bottom: 36px;
}
.user__qr__code {
    position: absolute;
    bottom: 30px;
    left: 10px;
}
@media screen and (max-width: 450px) {
    .user__card {
        width: 310px;
        height: auto !important;
        min-height: 245px !important;
    }
    .user__card .user__image {
        right: 19px;
        width: 80px;
        height: 118px;
        bottom: 36px;
    }
    /* .user__qr__code {
        left: 100px;
    } */
}
.tournament__table th {
    font-size: 12px;
}
.user__card .user__info {
    position: absolute;
    top: 70px;
    width: 195px;
    color: #000;
    font-size: 13px;
}
.user__card .user__info b {
    font-size: 10px;
}
.modal-backdrop {
    display: none;
}
.modal-backdrop.open {
    display: block;
    opacity: 0.6;
}
.custom__container {
    width: 1200px;
    max-width: 95%;
    margin: 20px auto;
}
.custom__user__data {
    list-style: none;
    padding: 0;
    background-color: #fff;
    border: 1px solid #000;
}
.users__table .non_active_user {
    cursor: pointer;
}
.users__table .non_active_user.selected__user {
    background-color: rgb(80, 180, 100);
    color: #fff;
}
.users__table .non_active_user.selected__user:hover {
    background-color: rgb(44, 142, 64) !important;
    color: #fff;
}
.custom__user__data li {
    display: flex;
    justify-content: space-between;
    border: 1px solid #000;
}
.custom__user__data li:nth-of-type(even) {
    border-bottom: 0;
    border-top: 0;
}
.custom__user__data li:last-of-type {
    border-bottom: 1px solid #000;
}
.custom__user__data li p {
    flex: 1;
    margin: 0;
    padding: 10px;
}
.custom__user__data li p:nth-of-type(2) {
    border-left: 1px solid #000;
}
.custom__body {
    background-color: #b2bec3;
}

#search__by__name__or__code {
    width: 380px;
    position: relative;
}
#search__by__name__or__code ul {
    padding: 0;
    max-height: 372px;
    overflow: auto;
    position: absolute;
    width: calc(100% - 2px);
    top: 100%;
    left: 1px;
    box-shadow: 0 0 3px #000;
    list-style: none;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.search__result__count {
    display: block;
    text-align: center;
}
#search__by__name__or__code p {
    margin: 0;
}
#search__by__name__or__code h6 {
    margin: 0;
}
#search__by__name__or__code ul a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
}
#search__by__name__or__code img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.search__for__relative {
    position: relative;
}
.search__for__relative ul {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    margin: 0;
    padding: 0;
}
.search__for__relative ul li {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #000;
    gap: 5px;
    padding: 3px;
    cursor: pointer;
    position: relative;
}
.search__for__relative ul li p {
    margin: 0;
    padding: 0;
}
.search__for__relative ul li:not(.text-danger):hover {
    background-color: rgb(158, 193, 106);
    color: #fff;
}
