.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.confirm-box {
  background: #16213e;
  border-radius: 14px;
  padding: 24px 24px 18px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.confirm-text {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.confirm-text b {
  color: #fff;
}

.confirm-actions {
  display: flex;
  gap: 10px;
}

.confirm-btn {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.confirm-ok {
  background: #2ecc71;
  color: #fff;
}

.confirm-ok:hover {
  background: #27ae60;
}

.confirm-ok.confirm-send {
  background: #2ecc71;
}

.confirm-ok.confirm-send:hover {
  background: #27ae60;
}

.confirm-cancel {
  background: #e74c3c;
  color: #fff;
}

.confirm-cancel:hover {
  background: #c0392b;
}

/* Message modal */
.message-box {
  max-width: 320px;
}

.message-title {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 10px;
}

.message-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.message-chip {
  background: #2a2a4a;
  color: #ccc;
  border: none;
  border-radius: 14px;
  padding: 5px 12px;
  font-size: 12px;
  cursor: pointer;
}

.message-chip:hover {
  background: #3a3a5a;
  color: #fff;
}

.message-input {
  letter-spacing: normal;
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  margin-bottom: 12px;
}

.message-btn {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: #4a4a6a;
  border: none;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 4px;
}

.message-btn:hover {
  background: #5a5a7a;
}
