.footer {
  position: fixed; /* 푸터를 화면 하단에 고정 */
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333; /* 푸터 배경색 */
  color: #fff; /* 푸터 텍스트 색상 */
  text-align: center; /* 푸터 텍스트 중앙 정렬 */
  padding: 10px 0; /* 푸터 안쪽 여백 */
}


/* 팝업 */
.board-info {
  display: flex;
  justify-content: space-between; /* 양 끝으로 배치 */
  align-items: center; /* 수직 정렬 */
}

.popup-layer {
    position: absolute;
    z-index: 999999;
    text-align: center;
    background: #ccc;
}

.popup-content {
    font-size: 14px;
}

.popup-footer {

    display: flex;
      background: #fff;
    justify-content: space-between;
    align-items: center;
}

.popup-footer .onedayclose {
    font-size: 14px;
    cursor: pointer;
    margin-left: 5px;
    color: #333;
}

.popup-footer button {
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}



.popup-layer p{margin: 0px;}
@media screen and (max-width: 550px) {
  .popup-layer{ left: 0px !important; width: 100%; top: 0px !important;}
  .popup-content {        width: 100% !important;}
  .popup-content img{width:100% !important; padding: 0px 20px;;}
  .popup-footer {    margin: 0px 20px;}
}
