.kuki-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.kuki-modal-content {
  position: relative;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  font-family: 'Malgun Gothic', sans-serif;
  box-sizing: border-box;
  text-align: left;
}

.modal-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0566DB;
  color: #FFFFFF;
  padding: 12px 16px;
  margin: -24px -24px 16px -24px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #FFFFFF;  /* ✅ 텍스트 색상을 흰색으로 지정 */
}

.modal-bold {
  font-weight: bold;
  margin-bottom: 8px;
}

.modal-text {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.modal-btn {
  background-color: #0566DB;
  color: #FFFFFF;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 8px;
}

.modal-skip {
  color: #666666;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.modal-close:hover {
  color: #CCCCCC;
}


@media (max-width: 400px) {
  .kuki-modal-content {
    padding: 20px;
    max-width: 90%;
  }

  .modal-title {
    font-size: 18px;
    font-color: #FFFFFF;
  }

  .modal-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .modal-skip {
    font-size: 12px;
  }
}
