/* _content/BlazorAppZephyr/Pages/Index.razor.rz.scp.css */
/* ===== Index 専用 ===== */

/* 初期値は 1 （あとでJSや他CSSから --sx を書き換えてOK） */
/*:root {
    --sx: 1;
}*/

/*.ix-stage {
    width: 1920px;
    height: 1080px;
    position: relative;
    overflow: hidden;
}*/

/* 中央寄せ */
/*.ix-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}*/

/*h1:focus {
    outline: none;
    font-size: var(--fs, 48px);
}*/

/*.ix-title {
    font-size: 48px;
}

    .ix-title:focus {
        outline: none;
    }*/
/* 置きたければ */

/* 見た目 */
/*.ix-hero {
    text-align: center;
    color: #fff;
}

.ix-title {
    font-weight: 800;
    letter-spacing: .02em;
    margin: 0 0 24px;
}

.ix-sub {
    opacity: .9;
    line-height: 1.5;
    margin: 0 0 40px;
    font-size: var(--fs, 32px);*/ /*calc(var(--fs, 32px) * var(--sx, 1));*/
/*}

    .ix-sub small {
        opacity: .75;
    }

.ix-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}*/

/* 1) ベース：全ボタン共通 */
/*.ix-btn {
    appearance: none;
    display: inline-flex;*/ /* 中のテキストを中央に */
    /*align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 1px solid #666;
    border-radius: 999px;
    background: #1f1f1f;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: transform .05s ease, background-color .2s ease, border-color .2s ease;
}

    .ix-btn:hover {
        background: #262626;
        border-color: #888;
    }

    .ix-btn:active {
        transform: translateY(1px);
    }

    .ix-btn:focus-visible {
        outline: 3px solid #9ad1ff;
        outline-offset: 2px;
    }

    .ix-btn:disabled {
        opacity: .6;
        cursor: not-allowed;
    }*/

/* 2) バリアント：プライマリ（色だけ上書き） */
/*.ix-btn-primary {
    background: #0078d4;
    border-color: #0078d4;
    color: #fff;
}*/

/* 3) レイアウト：カード内だけ中央&余白（配置系だけ） */
/*.ix-card .ix-btn-primary {
    display: block;
    width: fit-content;*/ /* 文字幅ぶんだけ */
    /*margin: 16px auto 0;*/ /* 上余白＋中央寄せ */
    /*min-height: 44px;*/ /* タップしやすさ */
    /*padding: 10px 18px;*/ /* 見た目微調整 */
    /*font-size: inherit;*/ /* 全体スケールに追従 */
    /*font-weight: 600;
    font-size: var(--fs, 22px);*/ /*calc(var(--fs, 32px) * var(--sx, 1));*/
/*}*/

/* ログイン */
/*.ix-login {
    color: #fff;
    text-align: center;
}

    .ix-login .ix-btn-primary {
        margin-top: 1rem;*/ /* 上に余白を追加 */
    /*}

.ix-card {
    width: 520px;
    margin: 24px auto 0;
    padding: 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
}*/

/*#stage-1920 .ix-card input.ix-input {
    transform: translateZ(0);
    will-change: transform;
}*/
/* 1) input を UA ネイティブ描画から外し、初回から CSS 描画に固定 */

/* ラベル */
/*.ix-label {
    display: block;
    text-align: left;
    margin: 10px 0 6px;
    color: #ddd;
    font-size: var(--fs, 32px);*/ /*calc(var(--fs, 32px) * var(--sx, 1));*/
/*}*/

/* 入力 */
/*.ix-input {
    width: 100%;
    height: 92px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #3b3b3b;
    background: #121212;
    color: #fff;
    outline: none;
    font-size: var(--fs, 32px);
}*/

/*input.ix-input {
    -webkit-appearance: none;
    appearance: none;
    font-family: var(--app-font) !important;
    font: inherit !important;
    line-height: inherit;
    font-feature-settings: "palt";
}
input.ix-input {
    contain: layout paint;
    isolation: isolate;
    transform: translateZ(0);
}*/

/* 親スケールを打ち消す */
/*.ix-unscale {
    transform: none !important;
    zoom: 1 !important;
}*/


/*    .ix-input:focus {
        border-color: #0a86e8;
        box-shadow: 0 0 0 3px rgba(10,134,232,.25);
    }*/


/* _content/BlazorAppZephyr/Pages/Login.razor.rz.scp.css */
.login-page-container[b-84yiqy6hhy] {
    /* ブラウザの表示領域いっぱいに広げる */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    /* 中身を真ん中に寄せる */
    display: flex;
    align-items: center;
    justify-content: center;
    /* 背景とスクロール防止 */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
    z-index: 9999;
}

.ix-login[b-84yiqy6hhy] {
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175);
}

/* タイトル部分：高さを固定せず、パディングで調整 */
.bg-primary[b-84yiqy6hhy] {
    padding: 2rem !important;
}

    .bg-primary h2[b-84yiqy6hhy] {
        color: #ffffff !important;
        display: block !important;
        margin: 0 !important;
    }

/* _content/BlazorAppZephyr/Pages/SystemSetting.razor.rz.scp.css */
/* レイアウト外枠 */
.page-container[b-ahmln9bnje] {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-header[b-ahmln9bnje] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.page-title[b-ahmln9bnje] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c5e;
}

.header-icon[b-ahmln9bnje] {
    font-size: 2rem;
    color: #3498db;
}

/* エクセル風入力カード */
.excel-style-card[b-ahmln9bnje] {
    background: white;
    border: 2px solid #1a3c5e;
    border-radius: 8px;
    padding: 25px;
}

.form-title-underline[b-ahmln9bnje] {
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 25px;
    color: #1a3c5e;
}

/* 各入力項目 */
.input-row[b-ahmln9bnje] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.input-label[b-ahmln9bnje] {
    width: 110px;
    font-weight: bold;
    font-size: 0.9rem;
}

.excel-input[b-ahmln9bnje] {
    border: 1px solid #002060;
    padding: 4px 8px;
    font-size: 0.9rem;
}

    .excel-input:focus[b-ahmln9bnje] {
        background-color: #fffde7;
        outline: 2px solid #3498db;
    }

/* 中見出し（青背景） */
.blue-sub-header[b-ahmln9bnje] {
    background-color: #9bc2e6;
    color: black;
    text-align: center;
    padding: 6px;
    font-weight: bold;
    border: 1px solid #7b99b6;
    margin: 25px 0 15px 0;
}

.grid-row[b-ahmln9bnje] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.grid-label[b-ahmln9bnje] {
    width: 100px;
    font-weight: bold;
}

.excel-input-sm[b-ahmln9bnje] {
    border: 1px solid #002060;
    width: 70px;
    text-align: right;
    padding: 2px 5px;
}

/* フッターボタン */
.form-footer[b-ahmln9bnje] {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-update[b-ahmln9bnje] {
    background: #1a3c5e;
    color: white;
    border: none;
    padding: 12px 60px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s;
}

    .btn-update:hover[b-ahmln9bnje] {
        background: #2c5282;
        transform: translateY(-1px);
    }
/* _content/BlazorAppZephyr/Pages/Trend.razor.rz.scp.css */
.monitor-container[b-jd049vdv6x] {
    padding: 20px;
    background-color: #f5f7f9;
    min-height: 100vh;
}

/* ヘッダー */
.monitor-header[b-jd049vdv6x] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid #33ccff;
}

.info-label[b-jd049vdv6x] {
    font-size: 0.9rem;
    color: #666;
}

.info-value[b-jd049vdv6x] {
    font-size: 1.1rem;
    font-weight: bold;
}

/* 検索パネル */
.search-panel[b-jd049vdv6x] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.system-name[b-jd049vdv6x] {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.filter-row[b-jd049vdv6x] {
    display: flex;
    align-items: center;
    background: #f0f4f8;
    padding: 15px;
    border-radius: 6px;
}

.date-inputs[b-jd049vdv6x] {
    display: inline-flex;
    align-items: center;
}

.date-picker[b-jd049vdv6x] {
    width: 160px;
}

/* グレーのボタン (image_e9fd10の再現) */
.btn-grey[b-jd049vdv6x] {
    background: #a6a6a6;
    color: white;
    border: 1px solid #777;
    padding: 5px 25px;
    font-weight: bold;
    border-radius: 4px;
}

.btn-back[b-jd049vdv6x] {
    background: #333;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 4px;
}

/* データグリッド (水色ヘッダー) */
.monitor-grid[b-jd049vdv6x] {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

    .monitor-grid th[b-jd049vdv6x] {
        background-color: #99ccff; /* 画像の淡い青色 */
        color: #333;
        padding: 12px;
        border: 1px solid #fff;
        text-align: center;
    }

    .monitor-grid td[b-jd049vdv6x] {
        padding: 12px;
        border: 1px solid #eee;
    }

.empty-state[b-jd049vdv6x] {
    padding: 50px;
    color: #999;
    text-align: center;
}
/* _content/BlazorAppZephyr/Pages/UnitConfig.razor.rz.scp.css */
/* レイアウト外枠 */
.page-container[b-giyraxjmq2] {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-header[b-giyraxjmq2] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.page-title[b-giyraxjmq2] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c5e;
}

.header-icon[b-giyraxjmq2] {
    font-size: 2rem;
    color: #3498db;
}

/* エクセル風入力カード */
.excel-style-card[b-giyraxjmq2] {
    background: white;
    border: 2px solid #1a3c5e;
    border-radius: 8px;
    padding: 25px;
}

.form-title-underline[b-giyraxjmq2] {
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 25px;
    color: #1a3c5e;
}

/* 各入力項目 */
.input-row[b-giyraxjmq2] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.input-label[b-giyraxjmq2] {
    width: 110px;
    font-weight: bold;
    font-size: 0.9rem;
}

.excel-input[b-giyraxjmq2] {
    border: 1px solid #002060;
    padding: 4px 8px;
    font-size: 0.9rem;
}

    .excel-input:focus[b-giyraxjmq2] {
        background-color: #fffde7;
        outline: 2px solid #3498db;
    }

/* 中見出し（青背景） */
.blue-sub-header[b-giyraxjmq2] {
    background-color: #9bc2e6;
    color: black;
    text-align: center;
    padding: 6px;
    font-weight: bold;
    border: 1px solid #7b99b6;
    margin: 25px 0 15px 0;
}

.grid-row[b-giyraxjmq2] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.grid-label[b-giyraxjmq2] {
    width: 100px;
    font-weight: bold;
}

.excel-input-sm[b-giyraxjmq2] {
    border: 1px solid #002060;
    width: 70px;
    text-align: right;
    padding: 2px 5px;
}

/* フッターボタン */
.form-footer[b-giyraxjmq2] {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-update[b-giyraxjmq2] {
    background: #1a3c5e;
    color: white;
    border: none;
    padding: 12px 60px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s;
}

    .btn-update:hover[b-giyraxjmq2] {
        background: #2c5282;
        transform: translateY(-1px);
    }
/* _content/BlazorAppZephyr/Pages/UnitRegistry.razor.rz.scp.css */
/* レイアウト外枠 */
.page-container[b-ow9l26qkp1] {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-header[b-ow9l26qkp1] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.page-title[b-ow9l26qkp1] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c5e;
}

.header-icon[b-ow9l26qkp1] {
    font-size: 2rem;
    color: #3498db;
}

/* エクセル風入力カード */
.excel-style-card[b-ow9l26qkp1] {
    background: white;
    border: 2px solid #1a3c5e;
    border-radius: 8px;
    padding: 25px;
}

.form-title-underline[b-ow9l26qkp1] {
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 25px;
    color: #1a3c5e;
}

/* 各入力項目 */
.input-row[b-ow9l26qkp1] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.input-label[b-ow9l26qkp1] {
    width: 110px;
    font-weight: bold;
    font-size: 0.9rem;
}

.excel-input[b-ow9l26qkp1] {
    border: 1px solid #002060;
    padding: 4px 8px;
    font-size: 0.9rem;
}

    .excel-input:focus[b-ow9l26qkp1] {
        background-color: #fffde7;
        outline: 2px solid #3498db;
    }

/* 中見出し（青背景） */
.blue-sub-header[b-ow9l26qkp1] {
    background-color: #9bc2e6;
    color: black;
    text-align: center;
    padding: 6px;
    font-weight: bold;
    border: 1px solid #7b99b6;
    margin: 25px 0 15px 0;
}

.grid-row[b-ow9l26qkp1] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.grid-label[b-ow9l26qkp1] {
    width: 100px;
    font-weight: bold;
}

.excel-input-sm[b-ow9l26qkp1] {
    border: 1px solid #002060;
    width: 70px;
    text-align: right;
    padding: 2px 5px;
}

/* フッターボタン */
.form-footer[b-ow9l26qkp1] {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-update[b-ow9l26qkp1] {
    background: #1a3c5e;
    color: white;
    border: none;
    padding: 12px 60px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s;
}

    .btn-update:hover[b-ow9l26qkp1] {
        background: #2c5282;
        transform: translateY(-1px);
    }
/* _content/BlazorAppZephyr/Pages/UnitSetting.razor.rz.scp.css */
/* レイアウト外枠 */
.page-container[b-jd965aslt5] {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-header[b-jd965aslt5] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.page-title[b-jd965aslt5] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c5e;
}

.header-icon[b-jd965aslt5] {
    font-size: 2rem;
    color: #3498db;
}

/* エクセル風入力カード */
.excel-style-card[b-jd965aslt5] {
    background: white;
    border: 2px solid #1a3c5e;
    border-radius: 8px;
    padding: 25px;
}

.form-title-underline[b-jd965aslt5] {
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 25px;
    color: #1a3c5e;
}

/* 各入力項目 */
.input-row[b-jd965aslt5] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.input-label[b-jd965aslt5] {
    width: 110px;
    font-weight: bold;
    font-size: 0.9rem;
}

.excel-input[b-jd965aslt5] {
    border: 1px solid #002060;
    padding: 4px 8px;
    font-size: 0.9rem;
}

    .excel-input:focus[b-jd965aslt5] {
        background-color: #fffde7;
        outline: 2px solid #3498db;
    }

/* 中見出し（青背景） */
.blue-sub-header[b-jd965aslt5] {
    background-color: #9bc2e6;
    color: black;
    text-align: center;
    padding: 6px;
    font-weight: bold;
    border: 1px solid #7b99b6;
    margin: 25px 0 15px 0;
}

.grid-row[b-jd965aslt5] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.grid-label[b-jd965aslt5] {
    width: 100px;
    font-weight: bold;
}

.excel-input-sm[b-jd965aslt5] {
    border: 1px solid #002060;
    width: 70px;
    text-align: right;
    padding: 2px 5px;
}

/* フッターボタン */
.form-footer[b-jd965aslt5] {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-update[b-jd965aslt5] {
    background: #1a3c5e;
    color: white;
    border: none;
    padding: 12px 60px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s;
}

    .btn-update:hover[b-jd965aslt5] {
        background: #2c5282;
        transform: translateY(-1px);
    }


<style >
.grid-row[b-jd965aslt5] {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* ラベルの幅を180pxで固定して開始位置を揃える */
.grid-label-fixed[b-jd965aslt5] {
    width: 180px;
    font-weight: bold;
    display: inline-block;
}

/* 入力ボックスのサイズを統一 */
.excel-input-sm[b-jd965aslt5] {
    width: 80px;
    height: 30px;
    text-align: right;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 5px;
}

/* ～ の記号や単位の間隔 */
.range-sep[b-jd965aslt5] {
    margin: 0 10px;
}

.unit-text[b-jd965aslt5] {
    margin-left: 10px;
    color: #666;
    font-size: 0.9em;
}

/* 異常ラベルの幅も揃える */
.sub-label[b-jd965aslt5] {
    width: 60px;
    margin-left: 20px;
    font-weight: bold;
}

</style[b-jd965aslt5] >
/* _content/BlazorAppZephyr/Pages/UserList.razor.rz.scp.css */
.user-list-container[b-owmwrzb8tc] {
    padding: 20px;
    background: #fff;
    min-height: 100vh;
}

/* ヘッダー */
.list-header[b-owmwrzb8tc] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #333;
    margin-bottom: 0;
}

.title[b-owmwrzb8tc] {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.agency-box[b-owmwrzb8tc] {
    margin-top: 10px;
}

.agency-name[b-owmwrzb8tc] {
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 1px solid #333;
    min-width: 200px;
    display: inline-block;
}

/* テーブル */
.table-wrapper[b-owmwrzb8tc] {
    border: 1px solid #333;
    border-top: none;
}

.aqua-table[b-owmwrzb8tc] {
    width: 100%;
    border-collapse: collapse;
}

    .aqua-table th[b-owmwrzb8tc] {
        background-color: #00bfff;
        color: black;
        padding: 10px;
        font-size: 1.1rem;
        border: 1px solid #333;
        text-align: center;
    }

    .aqua-table td[b-owmwrzb8tc] {
        padding: 12px;
        border: 1px solid #ccc;
        background: #ffffff; /* 背景を白にしてアンテナを見えやすく修正 */
        vertical-align: middle;
    }

/* 操作列の幅を確保 */
.action-cell[b-owmwrzb8tc] {
    width: 220px;
    text-align: center;
}

/* ボタン群 (グレーボタン復活) */
.btn-group-custom[b-owmwrzb8tc] {
    display: flex;
    gap: 10px;
    justify-content: center; /* 中央寄せに変更 */
}

.btn-ref[b-owmwrzb8tc], .btn-report[b-owmwrzb8tc] {
    background: #a6a6a6;
    color: black;
    border: 2px solid #000;
    padding: 5px 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 1px 1px 0px #000; /* 少し立体感をプラス */
}

    .btn-ref:hover[b-owmwrzb8tc], .btn-report:hover[b-owmwrzb8tc] {
        background: #8c8c8c;
    }

.btn-back-dark[b-owmwrzb8tc] {
    background: #343a40;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
}
/* _content/BlazorAppZephyr/Pages/UserMonitor.razor.rz.scp.css */
.monitor-container[b-t0b1kbktki] {
    padding: 20px;
    background-color: #f5f7f9;
    min-height: 100vh;
}

/* ヘッダー */
.monitor-header[b-t0b1kbktki] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid #33ccff;
}

.info-label[b-t0b1kbktki] {
    font-size: 0.9rem;
    color: #666;
}

.info-value[b-t0b1kbktki] {
    font-size: 1.1rem;
    font-weight: bold;
}

/* 検索パネル */
.search-panel[b-t0b1kbktki] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.system-name[b-t0b1kbktki] {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.filter-row[b-t0b1kbktki] {
    display: flex;
    align-items: center;
    background: #f0f4f8;
    padding: 15px;
    border-radius: 6px;
}

.date-inputs[b-t0b1kbktki] {
    display: inline-flex;
    align-items: center;
}

.date-picker[b-t0b1kbktki] {
    width: 160px;
}

/* グレーのボタン (image_e9fd10の再現) */
.btn-grey[b-t0b1kbktki] {
    background: #a6a6a6;
    color: white;
    border: 1px solid #777;
    padding: 5px 25px;
    font-weight: bold;
    border-radius: 4px;
}

.btn-back[b-t0b1kbktki] {
    background: #333;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 4px;
}

/* データグリッド (水色ヘッダー) */
.monitor-grid[b-t0b1kbktki] {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

    .monitor-grid th[b-t0b1kbktki] {
        background-color: #99ccff; /* 画像の淡い青色 */
        color: #333;
        padding: 12px;
        border: 1px solid #fff;
        text-align: center;
    }

    .monitor-grid td[b-t0b1kbktki] {
        padding: 12px;
        border: 1px solid #eee;
    }

.empty-state[b-t0b1kbktki] {
    padding: 50px;
    color: #999;
    text-align: center;
}
/* _content/BlazorAppZephyr/Pages/UserRegistry.razor.rz.scp.css */
/* ページ全体のレイアウト */
.page-container[b-jydgx5c4ve] {
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ヘッダー周り */
.page-header[b-jydgx5c4ve] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-title[b-jydgx5c4ve] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a3c5e;
    margin-bottom: 0;
}

.header-icon[b-jydgx5c4ve] {
    font-size: 2.2rem;
    color: #3498db;
}

/* カードスタイル */
.content-card[b-jydgx5c4ve] {
    background: #ffffff;
    border-radius: 12px;
    border: none;
    padding: 1.5rem;
    background-clip: padding-box;
}

/* テーブルデザイン */
.custom-table[b-jydgx5c4ve] {
    width: 100%;
    margin-bottom: 0;
    vertical-align: middle;
}

    .custom-table thead th[b-jydgx5c4ve] {
        background-color: #f8fafc;
        border-top: none;
        border-bottom: 2px solid #edf2f7;
        color: #64748b;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 1rem;
    }

    .custom-table tbody td[b-jydgx5c4ve] {
        padding: 1.2rem 1rem;
        border-bottom: 1px solid #f1f5f9;
        vertical-align: middle;
    }

/* 行のふわっとしたアニメーション */
.fade-in[b-jydgx5c4ve] {
    animation: fadeIn-b-jydgx5c4ve 0.4s ease-out forwards;
}

@keyframes fadeIn-b-jydgx5c4ve {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* バッジ（権限表示） */
.badge[b-jydgx5c4ve] {
    padding: 0.5em 0.8em;
    font-weight: 500;
    border-radius: 6px;
}

/* アクア風ボタン設定 */
.btn-primary-aqua[b-jydgx5c4ve] {
    background-color: #3498db;
    border-color: #3498db;
    color: white;
    transition: all 0.2s ease;
}

    .btn-primary-aqua:hover[b-jydgx5c4ve] {
        background-color: #2980b9;
        border-color: #2980b9;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

/* 操作用アイコンボタン */
.btn-icon[b-jydgx5c4ve] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-left: 5px;
}

    .btn-icon:hover[b-jydgx5c4ve] {
        background: #edf2f7;
        color: #3182ce;
        border-color: #3182ce;
    }

    .btn-icon.text-danger:hover[b-jydgx5c4ve] {
        background: #fff5f5;
        color: #e53e3e;
        border-color: #e53e3e;
    }

/* モーダル関連 */
.modal-content[b-jydgx5c4ve] {
    border-radius: 15px;
    overflow: hidden;
}

.modal-header[b-jydgx5c4ve] {
    border-bottom: 1px solid #edf2f7;
}

.border-aqua[b-jydgx5c4ve] {
    border-color: #3498db !important;
}

.form-control:focus[b-jydgx5c4ve] {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}
/* _content/BlazorAppZephyr/Pages/UserSetting.razor.rz.scp.css */
/* レイアウト外枠 */
.page-container[b-b7gc2mld4i] {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-header[b-b7gc2mld4i] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.page-title[b-b7gc2mld4i] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c5e;
}

.header-icon[b-b7gc2mld4i] {
    font-size: 2rem;
    color: #3498db;
}

/* エクセル風入力カード */
.excel-style-card[b-b7gc2mld4i] {
    background: white;
    border: 2px solid #1a3c5e;
    border-radius: 8px;
    padding: 25px;
}

.form-title-underline[b-b7gc2mld4i] {
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 25px;
    color: #1a3c5e;
}

/* 各入力項目 */
.input-row[b-b7gc2mld4i] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.input-label[b-b7gc2mld4i] {
    width: 110px;
    font-weight: bold;
    font-size: 0.9rem;
}

.excel-input[b-b7gc2mld4i] {
    border: 1px solid #002060;
    padding: 4px 8px;
    font-size: 0.9rem;
}

    .excel-input:focus[b-b7gc2mld4i] {
        background-color: #fffde7;
        outline: 2px solid #3498db;
    }

/* 中見出し（青背景） */
.blue-sub-header[b-b7gc2mld4i] {
    background-color: #9bc2e6;
    color: black;
    text-align: center;
    padding: 6px;
    font-weight: bold;
    border: 1px solid #7b99b6;
    margin: 25px 0 15px 0;
}

.grid-row[b-b7gc2mld4i] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.grid-label[b-b7gc2mld4i] {
    width: 100px;
    font-weight: bold;
}

.excel-input-sm[b-b7gc2mld4i] {
    border: 1px solid #002060;
    width: 70px;
    text-align: right;
    padding: 2px 5px;
}

/* フッターボタン */
.form-footer[b-b7gc2mld4i] {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-update[b-b7gc2mld4i] {
    background: #1a3c5e;
    color: white;
    border: none;
    padding: 12px 60px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s;
}

    .btn-update:hover[b-b7gc2mld4i] {
        background: #2c5282;
        transform: translateY(-1px);
    }
/* _content/BlazorAppZephyr/Shared/MainLayout.razor.rz.scp.css */
/*.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    overflow: auto;
    padding-top: var(--header-h);*/ /* �w�b�_�������������� */
    /*transition: padding-top .25s ease;*/ /* �����𓮂��� */
/*}*/

/* �w�b�_�[�F����͉B�� */
/*.topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1500;
    background: var(--topnav-bg, rgba(255,255,255,.20));
    backdrop-filter: blur(var(--topnav-blur, 6px));*/
/*    transition: transform .25s ease, opacity .25s ease;*/
    /*border-bottom: var(--topnav-border, 2px solid #808080);
    height: var(--header-h);
    box-sizing: border-box;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}*/

/*    .topnav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }*/

/* �B���Ƃ������t���� */
/*.topnav.is-hidden {
    transform: translateY(calc(-100% + var(--peek)));
    opacity: 0;
    pointer-events: none;
 }*/


/* PC�p�z�b�g�]�[���i�����E�펞�j */
/*.top-edge {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--hotzone-h, 12px);
    z-index: 100;
    background: transparent;
    pointer-events: auto;
}*/

/* �^�b�`�[���̓z�b�g�]�[���𖳌����i�X�}�z�̓X�N���[���Ő���j */
/*@media (pointer: coarse) {
    .top-edge {
        display: none;
    }
}*/
/* _content/BlazorAppZephyr/Shared/NavMenu.razor.rz.scp.css */
.navmenu-container[b-qiro321fjx] {
    --nav-drawer-width: 280px;
}

.glass-header[b-qiro321fjx] {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main[b-qiro321fjx] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-trigger[b-qiro321fjx] {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.icon-bar[b-qiro321fjx] {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #0d6efd;
    transition: 0.3s;
}

.app-logo[b-qiro321fjx] {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0d6efd;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.user-pill[b-qiro321fjx] {
    background: #f8f9fa;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #444;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-overlay[b-qiro321fjx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 1050;
}

    .nav-overlay.is-active[b-qiro321fjx] {
        visibility: visible;
        opacity: 1;
    }

.nav-drawer[b-qiro321fjx] {
    width: var(--nav-drawer-width);
    height: 100vh;
    background: #ffffff;
    padding: 1.5rem 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.is-active .nav-drawer[b-qiro321fjx] {
    transform: translateX(0);
}

.drawer-header[b-qiro321fjx] {
    font-size: 0.7rem;
    font-weight: 800;
    color: #adb5bd;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    text-transform: uppercase;
}

.nav-group label[b-qiro321fjx] {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 1.5rem 0 0.5rem 1rem;
    opacity: 0.6;
}

.nav-link-custom[b-qiro321fjx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .nav-link-custom:hover[b-qiro321fjx] {
        background: #f8f9fa;
        color: #0d6efd;
    }

    .nav-link-custom.active[b-qiro321fjx] {
        background: #e7f1ff;
        color: #0d6efd;
        font-weight: bold;
    }
