/* Extracted from index.html. Swimwear sensitive-word confirmation modal styles. */

/* 泳装敏感词：生成前提示 */
.swimwear-sensitive-modal {
  position: fixed;
  inset: 0;
  z-index: 1260;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overscroll-behavior: contain;
}
.swimwear-sensitive-modal.show {
  display: flex;
}
.swimwear-sensitive-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.swimwear-sensitive-card {
  position: relative;
  width: min(420px, 90vw);
  margin: 20px;
  padding: 22px 20px 18px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  z-index: 1;
  color: var(--text);
}
html.theme-dark .swimwear-sensitive-card {
  background: #1e1e1e;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.swimwear-sensitive-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.swimwear-sensitive-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.92;
}
.swimwear-sensitive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}
/* 与 #ai-image .prompt-controls-wrap .action-btn 一致的尺寸与层级 */
.swimwear-sensitive-actions .action-btn {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  box-sizing: border-box;
}
.swimwear-sensitive-actions .action-btn.generate {
  position: relative;
  z-index: 1;
}
