/**
 * @file www/css/components/eraser-preview.css
 * @description 消しゴム範囲プレビューのスタイル定義
 * @created 2025-12-03
 * @version 1.0.0
 */

/* 消しゴムプレビュー */
.eraser-preview {
  position: absolute;
  pointer-events: none;
  z-index: var(--z-index-cursor);

  /* 破線の枠 */
  border: 2px dashed rgba(255, 100, 100, 0.8);
  border-radius: 1px;

  /* 内部は薄い赤 */
  background-color: rgba(255, 100, 100, 0.15);

  /* 白いフチ取りで視認性確保 */
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);

  /* 非表示時 */
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* 表示時 */
.eraser-preview.visible {
  opacity: 1;
  transform: scale(1);
}

/* ダークモード時 */
body.light-mode .eraser-preview {
  border-color: rgba(200, 50, 50, 0.8);
  background-color: rgba(200, 50, 50, 0.15);
}
