.nsp .input-wrapper {
    position: relative;
}

.nsp .results-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #dee2e6;
}

.nsp .result-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 5px solid #764ba2;
}

.nsp .result-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.nsp .result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.nsp .result-label {
    color: #666;
    font-size: 0.9rem;
}

.nsp .breakdown {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nsp .breakdown h3 {
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #764ba2;
    padding-bottom: 10px;
}

.nsp .breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.nsp .breakdown-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #666666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .nsp .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .nsp .header h1 {
        font-size: 2rem;
    }
    
    .nsp .result-value {
        font-size: 1.5rem;
    }
}