.addPlayer,
.deletePlayer,
.score,
.companies {
  color: white;/* 글자 색 */
  padding: 0px 10px;/* 내부 여백 */
  border: none;/*테두리 제거*/
  cursor: pointer;/* 마우스 올렸을때 반응 */
  text-align: center;/*텍스트 가운데 정렬*/
  display: inline;/*한줄로 정렬*/
  width: auto;
  text-shadow: 1.5px 1.5px 0px rgba(0, 0, 0, 0.5);/* 글씨 그림자 */
}
/* 상, 하 버튼 4개 */

.addPlayer {
  margin-top: 13px;/* 상단 여백  */
  position: relative;
  width: 55%;
}

.deletePlayer {
  margin-top: 13px; /* 상단 여백  */
  position: relative;
  width: 44%;
}

.score {
  margin-bottom: 13px; /* 하단 여백  */
  position: absolute; /* 위치 지정해서 고정(상위 항목에 가깝게)  */
  bottom: 45px;
  left: 2.5%;
  width: 23%;
}

.companies {
  margin-bottom: 13px; /* 하단 여백  */
  position: absolute; /* 위치 지정해서 고정(상위 항목에 가깝게)  */
  bottom: 45px;
  right: 2.5%;
  width: 71%;
}

.swiper-container {
  border-top: 0.1px solid #ddd;
  border-bottom: 0px solid #ddd;
  border-left: 0px solid #ddd;
  border-right: 0px solid #ddd;
  overflow: hidden;
} /* swiper 전체 */

.swiper-wrapper {
  display: flex; /* 래퍼에 Flexbox를 사용하세요. */
}

.swiper-slide {
  flex: 0 0 auto;
  width: 100%;
  box-sizing: border-box;
} /* swiper 각 페이지 */

.swiper-pagination {
  margin-bottom: 100px;
} /* 스와이프 점 */

.swiper-pagination-bullet {
  width: 103px;
  height: 10px;
  display: inline-block;
  opacity: .2;
  margin: 0 5px;
  border-radius: 20px; /*모시리 둥글게*/
  transition: opacity .3s, background-color .3s, width .3s;
  transition-delay: .3s, .3s, 0s;
  box-shadow: 0 0.6px 3px rgba(0, 0, 0, 0.677);
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
  width: 100px;
  transition-delay: 0s;
}

.stock-button {
  margin-left: 5px;
  background: linear-gradient(45deg, #56ab2f, #a8e063);
  border: none;
  color: white; /* 글자 색 */
  text-align: center; /*텍스트 가운데 정렬*/
  display: inline-block;
  font-size: 12px;
  padding: 5px 10px; /*1 ~ 4 버튼들 내부 여백 */
  margin-top: 0px; /* 상단 여백  */
  margin-bottom: 0px; /* 하단 여백  */
  border-radius: 4px; /*모시리 둥글게*/
  width: 25%;
  cursor: pointer; /* 마우스 올렸을때 반응 */
  user-select: none;
  text-shadow: 0.5px 0.5px 0px rgba(0, 0, 0, 0.5); /* 글씨 그림자 */
} /* % 추가 버튼들  */

#valuesTable {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 190px; /* 하단 여백 */
  border: none; /*테두리 제거*/
} /* 전체 테이블 */

#valuesTable th,
#valuesTable td {
  text-align: left;
  padding: 5px; /* 열 내 여백(입력창 밖) */
}

#valuesTable th:first-child,
#valuesTable td:first-child {
  width: 21%; /* 1번째 열 고정 너비 설정 */
}

#valuesTable th {
  background-color: #f2f2f2;
}

#valuesTable tr:nth-child(even) {
  background-color: #f2f2f2;
}

#valuesTable input {
  padding: 4px 10px;
  border: 0.4px solid #ccc;
  font-size: 12px;
  width: 100%;
  box-sizing: border-box;
} /*플레이어 이름, 보유 주식 입력창 */

#valuesTable input:focus {
  outline: none;
  border-color: hsl(200, 100%, 76%); /* 선택 되었을때 색상 */
}

.dividend-button {
  position: absolute;
  top: 3px;
  left: 3px;
  width: auto;
  height: 35px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px; /* 하단 여백  */
  font-size: 17px;
  text-align: center; /*텍스트 가운데 정렬*/
  background-color: #00000012;
  color: rgba(0, 0, 0, 0.342); /* 글자 색 */
  padding: 2px 20px; /* 내부 여백 */
  border: none; /*테두리 제거*/
  cursor: pointer; /* 마우스 올렸을때 반응 */
  border-radius: 20px; /*모시리 둥글게*/
  display: block;
  user-select: none;
} /*배당 지급 버튼*/

.score-table {
  margin-left: 1%;
  width: 98%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 45px;
  align-items: center;
  justify-content: center;
}

.score-row:nth-child(even) {
  background-color: #f2f2f2;
}

.score-cell {
  padding: 4px 0px; /* 내부 여백 */
  font-size: 13px;
  vertical-align: middle;
}

.score-cell-name {
  width: 25%;
  text-align: center; /*텍스트 가운데 정렬*/
}

.score-cell-stock {
  width: 20%;
  text-align: center; /*텍스트 가운데 정렬*/
}

.score-cell-Cash {
  width: 23%;
  text-align: left;
}

.score-cell-total {
  width: 33%;
  padding-right: 15px;
  text-align: right;
}

input {
  padding: 3px 10px;
  border: 0.7px solid #ccc;
  font-size: 12px;
  width: 100%;
  box-sizing: border-box;
} /*현금 입력칸 */