/* counsel-modal.css */

/* 모달 기본 스타일 생략… (아래는 예시) */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow: auto;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 90%;
  max-height: 600px;
  margin: 40px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10000;
}
.modal-close:hover {
  color: #000;
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================= */
/* 상담하기 버튼만 검은 배경+흰 글씨 덮어쓰기 */
.counsel-button {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
  border-width: 1px !important;
  border-style: solid !important;
}
.counsel-button:hover {
  background-color: #222 !important;
  border-color: #222 !important;
  color: #fff !important;
}
.counsel-button:active,
.counsel-button:focus {
  background-color: #111 !important;
  border-color: #111 !important;
  outline: none;
  color: #fff !important;
}