table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
}

table th,
table td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  text-align: left;
}

table thead {
  background-color: #f3f3f3;
  font-weight: bold;
}

/* 복사 버튼 스타일 */
.copy-button {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  padding: 4px 8px;
  font-size: 0.8em;
  cursor: pointer;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 10; /* ← 가장 중요 */
}

.highlight {
  position: relative; /* 버튼 기준 위치 설정 */
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1em;
  overflow: visible; /* ← 잘림 방지 */
}
