.item{
    padding:10px;
    margin:10px 10px;
    box-shadow: 1px 1px 1px #ccc;
    width:calc(100% - 40px);
    display: flex;
    background-color: #fff;
    font-size: 12px;
}

.item .playerinfo{
    flex-grow: 1;
}

.item .font1{
    font-size: 12px;
    padding-bottom: 5px;
}

.item .font2{
    font-size: 10px;
}

.item .btnarea{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.item .btn{
    width:20px;
    height:20px;
}

.item .btn:hover{
    cursor:pointer;
    content:url('to_.png');
}

.playerfocus{
    background-color: #32AEAE;
    color:white;
    /* font-weight: 900; */
}

.btnfocus{
    visibility:hidden;
}

.table{
    display: table;
}

.imguploadlist .tr{
    display: table-row;
    font-size: 12px;
}

.imguploadlist .td,.imguploadlist .th{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding:5px;
}

.imguploadlist{
    font-size: 12px;
    width:100%;
}

.imguploadlist .tr:hover{
    background-color: #FFFaaf;
}

.imguploadlist .th{
    background-color: #ccc;
}

.imguploadlist .btn{
    padding:5px;
    background-color: #FFFC9A;
    color:#454545;
    width:fit-content;
    margin:auto;
    border-radius: 4px;
    box-shadow: 1px 1px 1px #aaa;
}

.imguploadlist .btn:hover{
    cursor: pointer;
    background-color: #DCDCDC;
    color:#2B2B2B;
}

.imguploadlist .btn:active{
    background-color: #808080;
    color:#FFFFFF;
}

.imguploadlist .thumbnail{
    aspect-ratio: 1/1;
    width:100px;
    /* height:50px;
    width:50px; */
    object-fit:contain;
}

.imguploadlist .noimg{
    width:100px;
    height:100px;
    background-color: #bbb;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:auto;
}

.imguploadlist .deletebtn{
    height:20px;
    width:20px;
}

.imguploadlist .deletebtn:hover{
    cursor: pointer;
    content:url('delete_.png');
}

#imguploadcontainer .addimg{
    width:calc(100% - 20px);
    background-color: #FFFC9A;
    box-shadow: 2px 2px 2px #aaa;
    font-size: 14px;
    font-weight: 900;
    border-radius: 2px;
    padding:5px;
    margin:5px;
    text-align: center;
}

#imguploadcontainer .addimg:hover{
    cursor: pointer;
    background-color: #DCDCDC;
    color:#2B2B2B;
}

#imguploadcontainer .addimg:active{
    background-color: #808080;
    color:#FFFFFF;
}

/* .fullimgitemout{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
} */

.showfullimgarea{
    width: 100vw;
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f5f5f5; */
    position: fixed;
    top:0;
    left:0;
}

.closefullimgarea:hover{
    cursor: pointer;
}

.fullimgitem{
    width:90vw;
    height:90vh;
    /* margin:-9px; */
    /* background-color: aquamarine; */
    box-shadow: #DDD 1px;
    background-color: white;
    border: 1px #DDD solid;
}

.fullimgname{
    padding:15px 30px;
    font-size: 16px;
    width:calc(100% - 60px);
    /* margin:-9px; */
    background-color: #90DFDF;
    display: flex;
}

.fullimg{
    padding:20px;
    width:calc(100% - 40px);
    height:calc(100% - 90px);
    /* height:auto; */
    object-fit: scale-down;
    object-position: center middle;
}

