:root {
    --npc-primary: #1a56db;
    --npc-bg: #f9fafb;
    --npc-card-bg: #ffffff;
    --npc-border: #e5e7eb;
    --npc-text: #111827;
    --npc-text-muted: #6b7280;
    --npc-success: #059669;
}

.npc-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--npc-text);
    max-width: 800px;
    margin: 20px auto;
    background: var(--npc-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.npc-title {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.npc-section {
    margin-bottom: 20px;
}

.npc-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.npc-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--npc-border);
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
}

.npc-hidden {
    display: none;
}

.npc-info-card {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.npc-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.npc-label {
    color: var(--npc-text-muted);
    font-weight: 500;
}

.npc-value {
    font-weight: 700;
    color: var(--npc-primary);
}

.npc-program-desc {
    font-size: 0.9rem;
    color: var(--npc-text-muted);
    margin: 10px 0 0;
    font-style: italic;
}

.npc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.npc-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.npc-card {
    background: var(--npc-card-bg);
    padding: 20px;
    border: 1px solid var(--npc-border);
    border-radius: 8px;
}

.npc-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--npc-bg);
    padding-bottom: 10px;
}

.npc-form-group {
    margin-bottom: 15px;
}

.npc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.npc-full-width {
    grid-column: 1 / -1;
}

.npc-results {
    margin-top: 30px;
    padding: 25px;
    background: #111827;
    color: #fff;
    border-radius: 12px;
}

.npc-results h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: #9ca3af;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.npc-results-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.npc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.npc-result-item span {
    color: #9ca3af;
}

.npc-result-item strong {
    font-size: 1.1rem;
}

.npc-aid-text {
    color: #34d399;
}

.npc-result-divider {
    height: 1px;
    background: #374151;
    margin: 8px 0;
}

.npc-highlight {
    padding-top: 10px;
}

.npc-highlight span {
    color: #fff;
    font-weight: 600;
}

.npc-highlight strong {
    font-size: 1.8rem;
    color: #60a5fa;
}

.npc-monthly {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #374151;
}

.npc-monthly strong {
    font-size: 1.3rem;
    color: #fbbf24;
}

@media (max-width: 600px) {
    .npc-grid, .npc-grid-3 {
        grid-template-columns: 1fr;
    }
}
