/*
Inazumaweb2 Plugin front css
*/

#login #loginform {
    border-radius: 8px;
    box-shadow: 0 4px 8px #eef3fe0d, 0 -4px 8px #eef3fe0d !important;
    box-sizing: border-box;
    border: solid 2px #3088f2;
}



/* 背景の暗いオーバーレイ */
.front-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    /* 初期状態は非表示 */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* 中央のコンテンツボックス */
.front-overlay-content {
    width: 90vw;
    height: 90vh;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: auto;
}

/* 閉じるボタン */
.front-close-btn {
    float: right;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 10px;
}


/* ここから フロント編集ボタン関連　✏ */

/* JS で付与する親用クラス */
.editpen-parent {
  position: relative;
}

/* ペン本体（クリック領域） */
.editpen {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);   /* ちょっと外にはみ出させる */
  width: 1.5em;
  height: 1.5em;
  pointer-events: auto;
}

/* 見た目は疑似要素で */
.editpen::before {
  content: "✏";
  font-size: 0.9em;
  line-height: 1;
  display: inline-block;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  padding: 0.1em 0.2em;
}

/* ここまで フロント編集ボタン関連　✏ */