/*
Theme Name: 再エネいちば Theme
Author: 市民電力連絡会
Description: Original theme for '再エネいちば'.
Version: 1.0.0
*/





/* ----------------------------------------------------
   Ultimate Member プロフィールヘッダーのカスタム調整
   ---------------------------------------------------- */

/* 1. 標準ヘッダー内の「写真」「名前情報」「カバー画像」を消す */
.um-header .um-profile-photo,
.um-header .um-profile-meta,
.um-cover {
    display: none !important;
}

/* 2. ヘッダーエリアの余白調整 */
.um-header {
    margin-bottom: 0 !important;
    min-height: 0 !important;
    border-bottom: none !important;
}

/* 3. 「歯車ボタン」の位置調整 */
/* 標準ヘッダーの中身を消したので、歯車だけが残っています。
   これを自作ヘッダーの右上に重ねるような配置にします */

.um-form {
    position: relative; /* 基準位置にする */
}

/* 歯車アイコンのコンテナ */
.um-profile-edit {
    position: absolute !important;
    top: 20px;   /* 上からの位置 */
    right: 0;    /* 右端に寄せる */
    z-index: 100;
    margin: 0 !important;
}

/* モバイル表示時の調整（必要であれば） */
@media (max-width: 768px) {
    .um-profile-edit {
        top: 10px;
    }
}