#page-detail {
  display: grid;
  min-height: 300px;
  grid-template-columns: 10% 90%;
  /* column-gap: 10px; */
  opacity: 0;
  animation-name: show-up;
  /* animation-delay: 0.1s; */
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
#page-detail .left-area .bottom-area {
  position: absolute;
  width: 100%;
  bottom: 0px;
}
#page-detail .left-area {
  padding: 5px;
}
#page-detail .left-area button:last-child {margin-bottom: 0px;}
#page-detail .left-area button {
  width: calc(100% - 10px);
  min-height: 30px;
  padding: 0 5px;
  border: none;
  border-radius: 7.5px;
  margin-bottom: 5px;
  font-weight: 700;
}
#page-detail .left-area #back-btn {
  justify-content: space-between;
  background-color: transparent;
  height: 44px;
  color: black;
  padding-left: 4px;
  padding-bottom: 0px;
  /* background-color: rgba(128, 128, 128, 0.05); */
  transition: 0.2s background-color;
}
/* #page-detail .left-area #back-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
} */
#page-detail .left-area #back-btn i {
  font-weight: 700;
  color: #000;
  /* width: 20px;
  font-weight: bold;
  color: rgb(70, 70, 70); */
}
#page-detail .left-area #back-btn p {
  display: inline-block;
  line-height: 36px;
  vertical-align: top;
  /* margin-left: 8px; */
  font-size: 1rem;
}

#page-detail .left-area #edit-btn {
  background-color: #1885f2;
  color: white;
}
#page-detail .left-area #delete-btn {
  /* width: calc(10% - 10px); */
  background-color: white;
  /* background-color: #dc3545; */
  box-shadow: 0 0 0 1px #dc3545 inset;
  /* border: 1px solid #dc3545; */
  color: #dc3545;
  font-weight: 600;
  margin-top: 5px;
}

#page-detail .right-area {
  padding: 10px;
  padding-left: 0px;
}
#page-detail .right-area .edit-area {
  background-color: white;
  border-radius: 10px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  height: 100%;
}
/* #page-detail .right-area .edit-area > .global-drop-area {
  min-height: 300;
  border: 2.5px dashed grey;
  border-style: dashed;
  border-radius: 10px;
} */
/* #page-detail .right-area .edit-area > .global-drop-area::after {
  position: relative;
  width: 100%;
  display: inline-block;
  text-align: center;
  top: 140px;
  content: '컴포넌트 Drop하여 내용 편집';
  font-size: 0.8vw;
}
#page-detail .right-area .edit-area > .global-drop-area.hoevr::after {
  content: '내용 편집';
} */