/* blowzermap_for_civitai.css - 縦幅圧縮最適化版（2026-05-22） */
/* 目的: 行の高さを大幅に低くし、情報密度を向上 */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 20px 10px;
    line-height: 1.45;           /* 少し詰める */
    background: #f9f9f9;
    color: #333;
}

h1 {
    text-align: center;
    color: #222;
    margin: 10px 0 8px 0;
    font-size: 1.8em;
}

p {
    text-align: center;
    color: #555;
    margin-bottom: 18px;
}

/* ==================== ナビゲーション ==================== */
.nav-links {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 10px;
}

.nav-links a {
    margin: 0 12px;
    text-decoration: none;
    color: #0066cc;
    font-weight: 500;
}

/* ==================== テーブル ==================== */
table {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 30px auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    border: 1px solid #e0e0e0;
    padding: 8px 10px;           /* ← ここを大幅に削減（14px → 8px） */
    vertical-align: middle;      /* 中央寄せでさらにコンパクトに */
    line-height: 1.4;
}

th {
    background: #f0f4f8;
    font-weight: 600;
    color: #222;
    text-align: left;
    white-space: nowrap;
    padding: 10px 10px;
}

/* ==================== 1列目：Civitaiアカウント + アイコン ==================== */
.acct-link {
    font-weight: bold;
    font-size: 1.1em;
    color: #0066cc;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.civitai-icon-container {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
    flex-wrap: nowrap !important;
    white-space: nowrap;
}

.civitai-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.civitai-icon-link:hover {
    background-color: #f0f4ff;
    transform: scale(1.12);
}

.civitai-icon-link img {
    width: 22px;
    height: 22px;
    opacity: 0.92;
}

/* ==================== 2列目 ==================== */
.browser-line {
    margin: 3px 0;
}

.browser-name {
    font-weight: bold;
    color: #222;
    font-size: 1.03em;
}

.label-line {
    margin-top: 4px;
    font-size: 0.9em;
    color: #555;
}

.warning-text {
    color: #d32f2f;
    font-weight: 500;
    margin-top: 5px;
    font-size: 0.93em;
    line-height: 1.35;
}

/* ==================== ホバー効果 ==================== */
tr:hover {
    background-color: #f8fbff;
}

/* ==================== レスポンシブ ==================== */
@media screen and (max-width: 768px) {
    th, td { 
        padding: 7px 8px; 
    }
    
    .civitai-icon-container {
        gap: 5px;
    }
}

@media screen and (max-width: 480px) {
    table { font-size: 0.94em; }
    th, td { padding: 6px 7px; }
}