.board-container {
  display: flex;
  gap: 30px;
  width: 1260px;
  margin: 30px auto 120px auto;
  font-family: 'Pretendard', sans-serif;
}

.board-content {
  width: 1010px;
  padding: 0 20px;
  box-sizing: border-box; /* 이걸로 padding이 포함된 전체 너비가 1010이 됨 */
  margin: 0 auto;
}



.write-files input[type="file"] {
  display: block;
  margin-bottom: 12px;
}

.write-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}


.ck-editor__editable {
  min-height: 300px;
  max-height: 300px;
  overflow-y: auto;
  resize: none;
  position: relative;
  scroll-behavior: smooth;
}


.guest-info {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.guest-info input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
}

.modal.hidden {
  display: none;
}

.modal {
  /* 모달 스타일 */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
}

