﻿/* PDF 페이지가 표시될 공간 스타일 */
.pdf-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    height: 800px; /* 고정된 높이 */
    overflow-y: auto; /* 내용이 넘칠 경우 스크롤 생성 */
    position: relative; /* 스피너를 중앙에 배치하기 위해 */
}

/* 스피너 스타일 */
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* 스피너 회전 애니메이션 */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* 이미지 스타일 */
img {
    max-width: 100%; /* 이미지 크기 조정 */
    margin-bottom: 20px; /* 이미지 간의 간격 */
}
