/* ユーザー管理画面用CSS - GHG Input Toolスタイル準拠 */

/* ステータスバッジ */
.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.status-active {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-badge.status-inactive {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* メールアドレス・ユーザー名 */
.user-email {
    font-family: monospace;
    font-size: 14px;
    font-weight: 500;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-name {
    font-weight: 500;
    color: #0066cc;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* テーブル行のホバー効果 */
.data-table tbody tr:hover {
    background-color: #f5f5f5;
}

/* ユーザー詳細へのリンク風カーソル */
.data-table tbody tr {
    cursor: pointer;
}

.data-table tbody tr:hover .user-name {
    color: #0066cc;
    text-decoration: underline;
}

/* 管理者の太字スタイル */
.role-admin {
    font-weight: 700;
}

/* 権限のある顧客列（省略表示） */
.user-customers {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 検索条件のステータス・権限フィルター横並び（間隔狭め） */
.search-conditions-section .form-row:first-of-type {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 10rem;
}

/* =================================================================
   登録状況バッジ
   ================================================================= */

.registration-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* 登録完了（緑） */
.registration-badge.registration-confirmed {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* 仮登録 - 残り7-6日（青） */
.registration-badge.registration-days-blue {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}


/* 仮登録 - 残り5-4日（黄色） */
.registration-badge.registration-days-yellow {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* 仮登録 - 残り3-2日（オレンジ） */
.registration-badge.registration-days-orange {
    background-color: #ffe5d0;
    color: #d35400;
    border: 1px solid #ffc9a3;
}

/* 仮登録 - 残り1日以下（赤） */
.registration-badge.registration-days-red {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* パスワード再設定待ち（グレー） */
.registration-badge.registration-reset {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

/* 期限切れ（グレー） */
.registration-badge.registration-expired {
    background-color: #d6d8db;
    color: #6c757d;
    border: 1px solid #c4c5c7;
}

/* 不明（薄いグレー） */
.registration-badge.registration-unknown {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}