/* シンプルリスト用 */
.wlm-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px auto;
    padding-left: 0; /* 左切れ防止 */
}

.wlm-table-wrapper table {
    border-collapse: collapse;
    width: 100%;
    min-width: 600px;
    font-family: Arial, sans-serif;
    font-size: 0.85rem; /* 文字小さめ */
}

.wlm-table-wrapper tr{
    border:none;
}

.wlm-table-wrapper th,
.wlm-table-wrapper td {
border-top: none;
    border-bottom: 1px solid #ccc;
    border-right: none;
    border-left: none;
    padding: 4px 6px;
    text-align: left;
}

.wlm-table-wrapper th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.nowrap {
    white-space: nowrap;
}

.wlm-table-wrapper tr:nth-child(even) {
    background-color: #fafafa;
}

.wlm-table-wrapper a {
    color: #1e88e5;
    text-decoration: none;
}

.wlm-table-wrapper a:hover {
    text-decoration: underline;
}

/* 外部リンクアイコン（Font Awesome） */
.wlm-table-wrapper a.wlm-external::after {
    content: "\f08e"; /* Font Awesome の外部リンクアイコン */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 3px;
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .wlm-table-wrapper table {
        font-size: 0.75rem;
    }
}