/* 체험 행사 결과보고서 제출 */

/* 헤더 메뉴 항목 */
.headerMenu3 {
  color: var(--mainColor);
}

.headerMenu3 > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}
.headerMenu3:hover > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}

.headerMenu3 .subMenuLi:nth-of-type(4) > .subMenuDiv {
  background-color: var(--mainColor);
  color:var(--whiteColor);
}
.headerMenu1 .subMenuLi:nth-of-type(4) .subMenuUl > li:nth-child(2) > a {
  color: var(--mainColor);
}

/* 메뉴 항목 */
.asideMenu > li:nth-child(4) > span {
  background-color: var(--anColor);
}

.asideMenu > li:nth-child(4) > .asideSubMenu > li:nth-child(2)> a {
  color: var(--mainColor);
}
.asideMenu > li:nth-child(4) > .asideSubMenu > li:nth-child(2) > a::before {
  color: var(--mainColor);
}


.pageContents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

/* 테이블 */
.reportTable > table {
  font-size: 15px;
}

.reportTable > table thead th {
  height: 50px;
  border-top: none;
  border-left: none;
  font-weight: 700;
}
.reportTable > table tbody tr {
  height: 50px;
}
.reportTable > table tbody tr:hover {
  background-color: var(--anColor);
}

.reportView {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--txtColor);
}
.reportView > span {
  max-width: 90%;
  max-height: 50px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.reportView:hover {
  color: var(--mainColor);
}

.fileIcon > i {
  color: var(--mainColor);
}

/* 테이블 영역 */
.reportTable > table tbody tr > td:first-child {
  width: 5%;
  border-left: none;
}
.reportTable > table tbody tr > td:nth-child(2) {
  width: 75%;
}
.reportTable > table tbody tr > td:nth-child(3) {
  width: 10%;
}
.reportTable > table tbody tr > td:nth-child(4) {
  width: 10%;
}


/* 작성버튼 */
.pageBottomBtns {
  justify-content: end;
}

/* 모바일 사이드 메뉴 */
.sideNav > li:nth-child(3) .sideSubNav {
  display: flex;
}
.sideNav > li:nth-child(3) .sideSubNav > .sideSubNavLi:nth-child(4) .sideInnerNav {
  display: flex;
}
.sideNav > li:nth-child(3) .sideSubNav > .sideSubNavLi:nth-child(4) > .sideSubNavTop {
  background-color: var(--subColor);
  color: var(--mainColor);
}
.sideNav > li:nth-child(3) .sideSubNav > .sideSubNavLi:nth-child(4) .sideInnerNav > li:nth-child(2) > a {
  color: var(--mainColor);
}

@media screen and (max-width: 1200px) {
  .boardTable > table {
    font-size: 13px;
  }

  .reportTable > table tbody tr > td:nth-child(2) {
    width: 70%;
  }
  .reportTable > table tbody tr > td:nth-child(4) {
    width: 15%;
  }
}

@media screen and (max-width: 800px) {
  .boardTable > table {
    font-size: 13px;
  }

  .roundBtns {
    font-size: 13px;
  }
}

@media screen and (max-width: 600px) {
  .reportTable > table tbody tr > td:first-child {
    width: 10%;
  }
  .reportTable > table tbody tr > td:nth-child(2) {
    width: 50%;
  }
  .reportTable > table tbody tr > td:nth-child(3) {
    width: 15%;
  }
  .reportTable > table tbody tr > td:nth-child(4) {
    width: 25%;
  }

  .reportView > span {
    width: 80%;
  }

  .reportTable > table tbody tr {
    height: 45px;
  }
}

@media screen and (max-width: 500px) {
  .boardTable > table {
    font-size: 13px;
  }

  .roundBtns {
    font-size: 13px;
  }
}
