/* 전체 페이지 스타일 */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: #ffffff; /* 필요하면 배경 색상 변경 */
}

/* 아이프레임이 빨간색 박스 전체를 차지하도록 확장 */
.iframe-container {
    width: 100%;  /* 화면 전체 너비 차지 */
    height: 1200px; /* 높이 확장 */
    margin: 0 auto;  /* 가운데 정렬 */
    overflow: hidden; /* 불필요한 스크롤 방지 */
    border: none; /* 테두리 제거 */
}

/* 아이프레임 스타일 */
.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
