/* 팝업공지 스타일 */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
}

.popup-header {
  border-bottom: 1px solid #eee;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.popup-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0 5px;
}

.popup-body {
  padding: 20px;
}

.popup-body img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.popup-footer {
  border-top: 1px solid #eee;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 위치별 스타일 */
.popup-position-center {
  /* 기본값 - 중앙 */
  margin: auto;

.popup-position-top-left {
  position: fixed;
  top: 20px;
  left: 20px;
  transform: none;
}

.popup-position-top-right {
  position: fixed;
  top: 20px;
  right: 20px;
  transform: none;
}

.popup-position-bottom-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: none;
}

.popup-position-bottom-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: none;
}

@media (max-width: 576px) {
  .popup-content {
    width: 95% !important;
    max-height: 80vh;
  }

  .popup-position-top-left,
  .popup-position-top-right,
  .popup-position-bottom-left,
  .popup-position-bottom-right {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
}
