/* Isolated styles - now only one wrapper */

.npf-wrap * {
    box-sizing: border-box;
    font-family: inherit;
}

.npf-wrap {
    max-width: 1300px;
    margin: 40px auto;
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* headings and text */
.npf-wrap h1 {
    color: #333;
    margin-bottom: 16px;
}

.npf-wrap p {
    color: #555;
    margin-bottom: 12px;
}

/* table */
.npf-wrap table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 20px;
}

.npf-wrap table,
.npf-wrap th,
.npf-wrap td {
    border: 1px solid #ddd;
}

.npf-wrap th,
.npf-wrap td {
    padding: 12px;
    text-align: left;
    word-wrap: break-word;
}

.npf-wrap th {
    background: #f8f9fa;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.npf-wrap tr:nth-child(even) {
    background-color: #f9f9f9;
}

.npf-wrap tr:hover {
    background-color: #f1f1f1;
}

.npf-wrap a {
    color: #007BFF;
    text-decoration: none;
}

.npf-wrap a:hover {
    text-decoration: underline;
}
