.ddws-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ddws-modal {
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
}

.ddws-modal h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.ddws-list {
  margin-bottom: 15px;
}

.ddws-item {
  background: #f4f4f4;
  margin: 6px 0;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.ddws-item:hover {
  background: #eaeaea;
}

.ddws-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

