/* 커스텀 태그를 블록 요소로 정의 */
account-group {
  display: block;
  width: 100%;
}

.account-box {
  background: white;
  border: 1px solid #e6e6e6;
  width: 100%;
  border-radius: 8px;
  margin: 15px 0;
  overflow: hidden;
  font-family: "GowoonDodum", sans-serif;
}

/* 아코디언 헤더 */
.acc-header {
  position: relative;
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  text-align: left;
  background: white;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 색상 */
.blue {
  color: #4a6fa5; /* 파스텔 파랑 */
}

.pink {
  color: #d28a9b; /* 차분한 분홍 */
}

.arrow {
  position: absolute;
  top: 50%; /* 세로 중앙 배치 */
  right: 20px; /* ⭐ 오른쪽 끝에서 20px 띄움 (이게 없으면 왼쪽에 붙습니다) */
  transform: translateY(-50%); /* 정확한 세로 중앙 정렬 */

  font-size: 20px; /* 30px이 너무 크다면 조금 줄여보세요 */
  color: #333;
  transition: transform 0.35s ease;
  user-select: none;
}

/* 펼침 상태 */
.acc-header.active .arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* 내용 */
.acc-body {
  background: #fff;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.acc-item {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.acc-item div {
  text-align: left;
}
.acc-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.acc-num {
  font-size: 1rem;
  font-weight: bold;
}

.acc-bank {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

/* 복사 버튼 */
.copy-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  background: #ffffff;
  border: 1px solid #ccc;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

.copy-btn:hover {
  background: #f2f2f2;
}

/* 마지막 항목 보더 제거 */
.acc-item:last-child {
  border-bottom: none;
}



#text {
  font-size: 34px;
  font-family: "Nanum Pen Script", cursive;
  letter-spacing: 0.05em;
}