#chara-modal {
    display: none;
    flex-flow: wrap;
    position: fixed;
    top: 50%;
    left: 50% !important;
    width: 56%;
    max-height: 350px;
    background: var(--color-bg);
    border-radius: 8px;
    border: 1px solid var(--color-text);
    transform: translate(-50%, 0%);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    padding: 20px;
    overflow-y: auto;
    justify-content: center;
    align-content: start;
    z-index: 1000;
}
.el-wrapper {
    position: relative;
    border: 2px solid transparent !important;
    border-radius: 4px;
    padding: 2px !important;
}
.check-mark {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    display: none;
}
.el-wrapper.selected .check-mark {
    display: block;
}
#chara-list img {
    pointer-events: auto;
}
.slot-item {
    display: flex;
    width: 76px;
    height: 76px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: var(--color-bg);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}