/* =====================================================
   銃種凡例・一覧テーブル
   ===================================================== */

.legend {
    display: flex;
    gap: 8px;
    margin: -4px 0 14px;
}

.gun-badge {
    min-width: 42px;
    padding: 4px 9px;
    font-size: 0.75rem;
}

.gun-ar {
    background: #e7f0ff;
    color: #1559c1;
}

.gun-sb {
    background: #e9f8ee;
    color: #1a7a43;
}

.gun-ap {
    background: #fff0e6;
    color: #a64f00;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 13px 12px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    white-space: nowrap;
}

th {
    background: var(--surface-muted);
    color: #475467;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

td {
    font-size: 0.92rem;
}

.action-group {
    display: flex;
    justify-content: center;
    gap: 7px;
}

.empty-row td {
    padding: 34px 12px;
    color: var(--muted);
}

