/* ASC Admin Dashboard */
:root {
    --primary: #06C755;
    --primary-dark: #05a648;
    --sidebar-bg: #1a1a2e;
    --sidebar-text: #a0a0b0;
    --sidebar-active: #fff;
    --bg: #f4f5f7;
    --card-bg: #fff;
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --border: #e5e7eb;
    --danger: #ef4444;
    --warning: #f59e0b;
    --success: #10b981;
    --info: #3b82f6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text-dark);
}

/* Layout */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 240px;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    padding: 20px 0;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}

.sidebar-logo {
    padding: 0 20px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 12px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--sidebar-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255,255,255,0.08);
    color: var(--sidebar-active);
}

.sidebar-nav a .icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.main-content {
    margin-left: 240px;
    flex: 1;
    padding: 24px;
}

/* Top bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.top-bar h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.top-bar-actions {
    display: flex;
    gap: 8px;
}

/* Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.stat-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s;
}

.stat-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-card-link:active {
    transform: translateY(0);
}

.stat-card-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.stat-card-value {
    font-size: 2rem;
    font-weight: 700;
}

.stat-card-value.danger { color: var(--danger); }
.stat-card-value.warning { color: var(--warning); }
.stat-card-value.success { color: var(--success); }

/* Card container */
.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
}

/* Table */
.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}

th {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

tr:hover { background: #f9fafb; }

/* Badges */
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-danger { background: #fef2f2; color: var(--danger); }
.badge-warning { background: #fffbeb; color: #b45309; }
.badge-success { background: #f0fdf4; color: #15803d; }
.badge-info { background: #eff6ff; color: #1d4ed8; }
.badge-gray { background: #f3f4f6; color: #6b7280; }

/* Category badges */
.cat-equipment { background: #dbeafe; color: #1e40af; }
.cat-health { background: #fef3c7; color: #92400e; }
.cat-labor { background: #e0e7ff; color: #3730a3; }
.cat-mental { background: #d1fae5; color: #065f46; }
.cat-emergency { background: #fee2e2; color: #991b1b; }
.cat-life { background: #fce7f3; color: #9d174d; }
.cat-other { background: #f3f4f6; color: #374151; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-danger { background: var(--danger); color: white; }
.btn-outline { background: white; border: 1px solid var(--border); color: var(--text-dark); }
.btn-outline:hover { background: #f9fafb; }
.btn-sm { padding: 5px 10px; font-size: 0.8rem; }

/* Filters */
.filters {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.filters select,
.filters input {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    background: white;
}

/* Notices (社内チャット) */
.notices-card .card-header { margin-bottom: 4px; }

.notices-list {
    display: flex;
    flex-direction: column;
}

.notice-row {
    display: grid;
    grid-template-columns: 130px 180px 1fr 80px;
    gap: 12px;
    padding: 12px 8px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    align-items: center;
    transition: background 0.15s;
}

.notice-row:hover { background: #f9fafb; }

.notice-row.unread {
    background: #fef3c7;
    font-weight: 500;
}

.notice-row.unread:hover { background: #fde68a; }

.notice-col {
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-col.date {
    color: #6b7280;
    font-size: 0.8rem;
}

.notice-col.parties {
    color: #374151;
}

.notice-col.parties .from { font-weight: 600; }
.notice-col.parties .to { color: #6b7280; }

.notice-col.subject { color: #111827; font-weight: 500; }
.notice-col.replies { text-align: center; color: #6b7280; font-size: 0.8rem; }

.notice-priority {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.notice-priority-urgent { background: #fee2e2; color: #991b1b; }
.notice-priority-high { background: #fed7aa; color: #c2410c; }
.notice-priority-normal { background: #dbeafe; color: #1e40af; }
.notice-priority-low { background: #f3f4f6; color: #6b7280; }

/* Notice modal */
.notice-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.notice-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.notice-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.notice-modal-header h3 { font-size: 1.1rem; }

.notice-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
    padding: 0 8px;
}

#noticeModalBody {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.thread-msg {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #f9fafb;
}

.thread-msg.own { background: #eff6ff; margin-left: 40px; }

.thread-msg-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 6px;
}

.thread-msg-header .sender { font-weight: 600; color: #111827; }
.thread-msg-body { font-size: 0.9rem; color: #111827; white-space: pre-wrap; }

.notice-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #374151;
}

.notice-form input,
.notice-form select,
.notice-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 14px;
    font-family: inherit;
}

.notice-form textarea { min-height: 120px; resize: vertical; }

/* Alert banner */
.alert-banner {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-banner-icon {
    font-size: 1.5rem;
}

.alert-banner-content { flex: 1; }
.alert-banner-title { font-weight: 600; color: var(--danger); }
.alert-banner-text { font-size: 0.85rem; color: #7f1d1d; margin-top: 4px; }

/* Chat detail */
.chat-detail {
    max-width: 700px;
}

.chat-detail .msg {
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 12px;
}

.chat-detail .msg-user {
    background: #dcfce7;
    margin-left: 60px;
}

.chat-detail .msg-system {
    background: white;
    border: 1px solid var(--border);
    margin-right: 60px;
}

.chat-detail .msg-admin {
    background: #FFF3E0;
    border-left: 3px solid #FF9500;
    margin-right: 60px;
}

.chat-detail .msg-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.chat-detail .msg-original { margin-bottom: 6px; }

.chat-detail .msg-translation {
    font-size: 0.85rem;
    color: var(--info);
    border-top: 1px solid var(--border);
    padding-top: 6px;
    margin-top: 6px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
}

.pagination a,
.pagination span {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--text-dark);
}

.pagination a:hover { background: #e5e7eb; }
.pagination .active { background: var(--primary); color: white; }

/* Login */
.admin-login {
    max-width: 400px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.admin-login h2 {
    text-align: center;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 8px;
    text-align: center;
}

/* ==========================================
   ハンバーガーメニュー & サイドバー モバイル対応
   ========================================== */
.sidebar-toggle {
    display: none;       /* PC では非表示 */
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 1001;
    width: 42px;
    height: 42px;
    background: #1a1a2e;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    padding: 0;
}
.sidebar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
body.sidebar-open .sidebar-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.sidebar-open .sidebar-toggle span:nth-child(2) { opacity: 0; }
body.sidebar-open .sidebar-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}
body.sidebar-open .sidebar-overlay {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    /* サイドバーはスライドインで表示可能に */
    .sidebar {
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.28s ease;
        position: fixed;
        top: 0; left: 0;
        height: 100vh;
        width: 240px;
        z-index: 1000;
        box-shadow: 2px 0 12px rgba(0,0,0,0.2);
    }
    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    /* ハンバーガー表示 */
    .sidebar-toggle {
        display: block;
    }

    /* 本文：サイドバー余白を消す・上にハンバーガー分の余白 */
    .main-content {
        margin-left: 0;
        padding-top: 60px;  /* ハンバーガーボタンと被らないように */
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    /* サイドバー内の a タップ後にサイドバーを閉じる（クリック時は画面遷移なので自動で閉じる）*/
}

/* ================================================
   ダッシュボード 新デザイン (2026-04-19)
   ================================================ */

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
    margin: 22px 0 12px 2px;
    letter-spacing: 0.02em;
}

.dash-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 8px;
}
.dash-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 8px;
}
@media (max-width: 960px) {
    .dash-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .dash-grid-3 { grid-template-columns: 1fr; }
}

.dash-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    overflow: hidden;
}
.dash-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}
.dash-card .dash-ico {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 4px;
}
.dash-card .dash-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 0.02em;
}
.dash-card .dash-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
}

/* 本日・Level別カラー（やや淡め） */
.dash-today-l1 { background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%); }
.dash-today-l1 .dash-num { color: #0369A1; }
.dash-today-l2 { background: linear-gradient(135deg, #FEF3C7 0%, #FFFBEB 100%); }
.dash-today-l2 .dash-num { color: #92400E; }
.dash-today-l3 { background: linear-gradient(135deg, #FECACA 0%, #FEF2F2 100%); }
.dash-today-l3 .dash-num { color: #991B1B; }
.dash-today-total { background: linear-gradient(135deg, #DCFCE7 0%, #F0FDF4 100%); }
.dash-today-total .dash-num { color: #065F46; }

/* 累計（少し濃いめ） */
.dash-cum-l1 { background: linear-gradient(135deg, #BAE6FD 0%, #E0F2FE 100%); }
.dash-cum-l1 .dash-num { color: #0C4A6E; }
.dash-cum-l2 { background: linear-gradient(135deg, #FDE68A 0%, #FEF3C7 100%); }
.dash-cum-l2 .dash-num { color: #78350F; }
.dash-cum-l3 { background: linear-gradient(135deg, #FCA5A5 0%, #FECACA 100%); }
.dash-cum-l3 .dash-num { color: #7F1D1D; }
.dash-cum-total { background: linear-gradient(135deg, #86EFAC 0%, #DCFCE7 100%); }
.dash-cum-total .dash-num { color: #064E3B; }

/* 3段目: 未解決（赤で目立たせる） */
.dash-unresolved {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    margin: 8px 0 14px;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-radius: 14px;
    border: 2px solid #FCA5A5;
    text-decoration: none;
    color: inherit;
    transition: all .2s;
}
.dash-unresolved:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220,38,38,0.15);
}
.dash-unresolved.is-alert {
    border-color: #DC2626;
    animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.3); }
    50% { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}
.dash-unresolved-main {
    display: flex;
    align-items: center;
    gap: 16px;
}
.dash-unresolved-ico {
    font-size: 2rem;
    line-height: 1;
}
.dash-unresolved-lbl {
    font-size: 1rem;
    font-weight: 700;
    color: #991B1B;
}
.dash-unresolved-sub {
    font-size: 0.78rem;
    color: #B91C1C;
    margin-top: 2px;
}
.dash-unresolved-num {
    font-size: 3.2rem;
    font-weight: 900;
    color: #DC2626;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* ランキング */
.dash-rank-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.dash-rank-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #F3F4F6;
}
.dash-rank-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dash-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dash-rank-medal {
    flex: 0 0 28px;
    text-align: center;
    font-size: 1.1rem;
}
.dash-rank-body {
    flex: 1;
    min-width: 0;
}
.dash-rank-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.dash-rank-bar {
    height: 6px;
    background: #F3F4F6;
    border-radius: 3px;
    overflow: hidden;
}
.dash-rank-fill {
    height: 100%;
    border-radius: 3px;
    transition: width .4s ease;
}
.dash-rank-value {
    flex: 0 0 auto;
    font-size: 0.82rem;
    font-weight: 700;
    color: #6B7280;
}

/* ランキング＆ニュース: 2x2 (PC) / 縦1列 (モバイル) */
.dash-grid-rank-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (max-width: 960px) {
    .dash-grid-rank-news { grid-template-columns: 1fr; }
}

/* HTPニュース カード */
.dash-news-card {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #DBEAFE;
}
.dash-news-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #DBEAFE;
}
.dash-news-more {
    font-size: 0.78rem;
    color: #1E40AF;
    text-decoration: none;
    font-weight: 600;
}
.dash-news-more:hover { text-decoration: underline; }
.dash-news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 380px;
    overflow-y: auto;
}
.dash-news-item {
    display: flex;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}
.dash-news-item:hover { background: rgba(255,255,255,0.7); }
.dash-news-thumb {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: #F3F4F6;
    border-radius: 6px;
    overflow: hidden;
}
.dash-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dash-news-body { flex: 1; min-width: 0; }
.dash-news-date {
    font-size: 0.72rem;
    color: #6B7280;
    margin-bottom: 3px;
}
.dash-news-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================================================
   相談詳細のAI要約表示（軽量Markdown整形）
   ================================================ */
.summary-text {
    background: #F0FDF4;
    padding: 18px 22px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #111827;
    font-family: -apple-system, 'Hiragino Sans', 'Yu Gothic UI', sans-serif;
}
.summary-text .sm-h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #065F46;
    margin: 20px 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #86EFAC;
}
.summary-text .sm-h2:first-child { margin-top: 0; }
.summary-text .sm-h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #065F46;
    margin: 16px 0 8px;
    padding-left: 10px;
    border-left: 4px solid #06C755;
}
.summary-text .sm-h3:first-child { margin-top: 0; }
.summary-text .sm-h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #047857;
    margin: 14px 0 6px;
}
.summary-text .sm-h4:first-child { margin-top: 0; }
.summary-text .sm-ul {
    margin: 6px 0 12px;
    padding-left: 22px;
    list-style: disc;
}
.summary-text .sm-ul li {
    margin-bottom: 4px;
    line-height: 1.65;
}
.summary-text strong {
    color: #065F46;
    font-weight: 700;
}
.summary-text .sm-hr {
    border: 0;
    border-top: 1px dashed #A7F3D0;
    margin: 18px 0;
}

/* ================================================
   詳細画面: 本人情報 vs 所属企業情報 の視覚区別
   ================================================ */

.info-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #065F46;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #A7F3D0;
}

/* 本人情報: 通常の白背景（控えめな緑アクセント） */
.personal-info-card {
    background: #fff;
    border-left: 4px solid #06C755;
}

/* 所属企業情報: 青系で本人情報と区別 */
.company-info-card {
    background: #F0F9FF;
    border-left: 4px solid #3B82F6;
}
.company-info-card .info-section-title {
    border-bottom-color: #BFDBFE;
}
.company-info-card .stat-card-label {
    color: #1E40AF;
}

/* ユーザー編集画面: 所属企業セクション */
.form-section {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 12px;
}
.form-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid currentColor;
}
.company-section {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
}
.company-section .form-section-title {
    color: #1E40AF;
    border-bottom-color: #93C5FD;
}
.company-section label {
    color: #1E40AF;
    font-weight: 600;
}
