#boardModal {
    /* 모달을 화면 가운데로 위치시킵니다. */
    display: none;
    justify-content: center;
    align-items: center;
    overflow: auto; /* 스크롤이 필요할 때만 스크롤이 생성됩니다. */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 배경을 어둡게 만듭니다. */
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    max-height: 80%; /* 모달 내용의 최대 높이를 설정합니다. */
    overflow-y: auto; /* 내용이 모달 높이를 초과할 때 스크롤이 생성됩니다. */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}