/* 오버레이 */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 1000;
}

/* 바텀시트 본체 */
.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  background: #fff;
  border-radius: 16px 16px 0 0;
  transition: bottom 0.3s ease;
  z-index: 1001;
  max-height: 90vh;
  overflow-y: auto;
}

/* 상단 영역 */
.sheet-header {
  position: sticky;
  top: 0;
  background: #fff;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* 닫기 버튼 */
.close-btn {
  position: absolute;
  right: 16px;
  top: 8px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* 콘텐츠 영역 */
.sheet-content {
  padding: 20px;
}
/*
#openSheet {
  display:block;
  margin:50px auto;
  padding:12px 24px;
  border:none;
  background:#007bff;
  color:#fff;
  border-radius:6px;
  cursor:pointer;
}
*/