/* blowzer2nd_map.css v2 */
:root {
    --primary: #3366cc;
    --bg: #fafafa;
    --card: #ffffff;
    --border: #ddd;
    --accent: #e8f0fe;
}

body.pc-mode {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: #333;
    line-height: 1.5;
}

.center { text-align: center; }

.tools-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tools-list a {
    display: inline-block;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.2s;
}

.tools-list a:hover {
    background: #f0f7ff;
    border-color: var(--primary);
    transform: translateY(-1px);
}

.inline-controls {
    margin: 20px auto;
    text-align: center;
    max-width: 720px;
    padding: 0 10px;
}

.inline-controls input {
    width: 100%;
    max-width: 680px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
}

.using-machine-selector-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.slide-btn {
    padding: 8px 16px;
    font-size: 1.1rem;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
}

.slide-btn:hover {
    background: #f8f9fa;
    border-color: #999;
}

.table-responsive {
    width: 95%;
    max-width: 1100px;
    margin: 24px auto;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    min-width: 780px;
}

th, td {
    border: 1px solid var(--border);
    padding: 10px 8px;
    text-align: center;
    vertical-align: middle;
}

th {
    background: var(--accent);
    font-weight: 600;
}

tbody tr:nth-child(even) { background: #f9fbff; }
tbody tr:hover { background: #f0f7ff; }

footer {
    margin-top: 60px;
    padding: 20px 0 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

.small {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 640px) {
    th, td { padding: 8px 6px; font-size: 0.92rem; }
}

/* 警告列の強調 */
td:nth-child(2) {          /* 2列目が警告列 */
    min-width: 60px;
    font-size: 1.1rem;
}

td:nth-child(2) span[title] {
    transition: transform 0.2s;
}

td:nth-child(2) span[title]:hover {
    transform: scale(1.2);
}